加载页面时,如何让指定输入框默认获取焦点?
只需在body标签中加入onload属性即可,如下:
<body onload="document.getElementById('loginName').focus()">
......
<input type="text" id="loginName" name="loginName"/>
......
</body>
加载页面时,如何让指定输入框默认获取焦点?
只需在body标签中加入onload属性即可,如下:
<body onload="document.getElementById('loginName').focus()">
......
<input type="text" id="loginName" name="loginName"/>
......
</body>