欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

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>
<input type="button" id="myButton"
value="Click me!" onclick="disableButton()" />
</form>
</body>

</html>