HTML DOM focus() ·½·¨

¶¨ÒåºÍÓ÷¨

focus() ·½·¨ÓÃÓÚÏò°´Å¥¸³Óè½¹µã¡£

Óï·¨

buttonObject.focus()

ʵÀý

ÏÂÃæµÄÀý×Ó½«ÔÚ°´Å¥ÉÏÉèÖý¹µã£º

<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>
VUE