HTML DOM disabled ÊôÐÔ
¶¨ÒåºÍÓ÷¨
disabled ÊôÐÔ¿ÉÉèÖûò·µ»ØÊÇ·ñ½ûÓð´Å¥¡£
Óï·¨
buttonObject.disabled=true|false
ʵÀý
ÏÂÃæµÄÀý×Ó½«½ûÓð´Å¥£º
<html>
<head>
<script type="text/javascript">
function disableButton()
{
document.getElementById("myButton").disabled=true
}
</script>
</head>
<body>
<form>
<button id="myButton" onClick="disableButton()">
Click Me!</button>
</form>
</body>
</html>