我不希望用户必须单击第一个文本框才能在其上书写。加载页面时,我希望预先选择文本输入。
问问题
7237 次
3 回答
6
在 html 元素中使用 autofocus 属性。
在此示例中,您可以看到“名字”输入具有自动对焦功能,并且在页面加载时会自动选择,因此用户可以直接输入:
<!DOCTYPE html>
<html>
<body>
<form action="demo_form.asp">
First name: <input type="text" name="fname" autofocus><br>
Last name: <input type="text" name="lname"><br>
<input type="submit">
</form>
</body>
</html>
Internet Explorer 9 及更早版本不支持输入标记的 autofocus 属性。
于 2013-11-06T18:04:43.917 回答
4
这很简单。这是小提琴。
HTML
<input id="box" value="text" />
JavaScript
window.onload = document.getElementById('box').select();
于 2013-11-06T18:03:53.167 回答
1
使用javascript HTMLElement.focus()的基本示例
<head>
<script type="text/javascript">
function setFocus() {
document.getElementById('txtTwo').focus();
}
</script>
</head>
<body onload="setFocus();">
<input id="txtOne" type="text" />
<br/>
<input id="txtTwo" type="text" />
</body>
于 2013-11-06T18:12:09.273 回答