表单中的单选按钮在 chrome 中不可见/有时它确实出现并再次消失。在某些网站中,我在带有单选按钮的 chrome 中遇到了错误。但我没有得到任何解决方案来解决这个问题。有人知道吗?这是我遇到单选框问题的表单示例。
<form method="get" action="http://www.google.in/search" style="width:244" target="_blank">
<table width="242" border="0" align="center" cellpadding="0" style="font-size:10px">
<tr>
<td width="242"><img src=googlelogo.gif style="padding-top:6px;"/>
<input type="text" name="q" size="14" maxlength="255" value=""/>
<input type="submit" value="Search" style="width:52px;">
</td>
</tr>
<tr>
<td style="padding-top:3px;">
<input type="radio" name="sitesearch" value="" />The Web
<input type="radio" name="sitesearch" value="website.com" width="auto" height="auto" checked="checked"/>website.com
<br />
</td>
</tr>
</table>
</form>