HTML DOM click() ·½·¨
¶¨ÒåºÍÓ÷¨
click() ·½·¨ÓÃÓÚÔÚµ¥Ñ¡°´Å¥ÉÏÄ£ÄâÒ»´ÎÊó±êµã»÷£º
Óï·¨
radioObject.click()
ʵÀý
ÏÂÃæµÄÀý×Ó¿ÉÔÚµ¥Ñ¡°´Å¥ÉÏÄ£ÄâÒ»´ÎÊó±êµã»÷£º
<html>
<head>
<script type="text/javascript">
function clickRadio()
{
document.getElementById('radio1').click()
}
</script>
</head>
<body>
<form>
<input type="radio" id="radio1" />
<br />
<input type="button" onclick="clickRadio()"
value="Click radio button" />
</form>
</body>
</html>