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

HTML DOM focus() 方法

定義和用法

focus() 方法用于向按鈕賦予焦點(diǎn)。

語(yǔ)法

buttonObject.focus()

實(shí)例

下面的例子將在按鈕上設(shè)置焦點(diǎn):

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

<form>
<input type="button" id="button1" value="Button1" />
<br />
<input type="button" onclick="setFocus()"
value="Set focus to Button 1" />
</form>

</body>
</html>