HTML DOM defaultChecked ÊôÐÔ
¶¨ÒåºÍÓ÷¨
defaultChecked ÊôÐÔ¿É·µ»Ø checked ÊôÐÔµÄĬÈÏÖµ¡£
Èç¹ûµ¥Ñ¡°´Å¥µÄĬÈÏ״̬ÊÇÑ¡ÖУ¬Ôò·µ»Ø true£¬·ñÔò·µ»Ø fasle¡£
Óï·¨
radioObject.defaultChecked
ʵÀý
ÏÂÃæµÄÀý×Ó·µ»ØÁË checked ÊôÐÔµÄĬÈÏÖµ£º
<html>
<body>
<form>
<input type="radio" id="radio1" checked="checked" />
</form>
<script type="text/javascript">
alert(document.getElementById("radio1").defaultChecked
);
</script>
</body>
</html>