Hi
Ich will auf einer web seite,einen Radio button automatisch auswählen.
Wie stell ich das jetzt mit Deplphi an??
Ich hab mit Twebbrowser eine website geöffnet, nun will ich, dass ein Radiobutton ausgewählt wird.
Hier ist der Teil des
Html codes:
Code:
<form method="post" action="details.php?image_id=102">
<table border="0" cellspacing="0" cellpadding="1">
<tr>
<td class="head1">
<table border="0" cellspacing="0" cellpadding="3" class="row1">
<tr>
<td valign="bottom">
<input type="radio" name="rating" value="5" class="select">
sehr gut
<input type="radio" name="rating" value="4" class="select">
gut
<input type="radio" name="rating" value="3" class="select">
ok
<input type="radio" name="rating" value="2" class="select">
geht so
<input type="radio" name="rating" value="1" class="select">
schlecht </td>
<td>
<input type="hidden" name="action" value="rateimage" />
<input type="hidden" name="id" value="102" />
<input type="submit" value="Bewerten" class="button" name="submit" />
</td>
</tr>
</table>
</td>
</tr>
</table>
</form>
Wie kann ich jetzt z. b. den Radio button mit value = 3 auswählen??
Danke schon mal für eure Hilfe
CU