亚洲乱码中文字幕综合,中国熟女仑乱hd,亚洲精品乱拍国产一区二区三区,一本大道卡一卡二卡三乱码全集资源,又粗又黄又硬又爽的免费视频

HTML DOM blur() 方法

定義和用法

blur() 方法用于把焦點(diǎn)從按鈕上移開。

語法

buttonObject.blur()

實(shí)例

下面的例子講吧焦點(diǎn)從按鈕上移開:

<html>
<head>
<script type="text/javascript">
function removeFocus()
  {
  document.getElementById('button1').blur()
  }
</script>
</head>
<body>

<form>
<input type="button" id="button1" value="Button1" />
<br />
<input type="button" onclick="removeFocus()"
value="Remove focus from Button 1" />
</form>

</body>
</html>