我不知道有些人如何制作它,但有时当我进入某些网站时,它会自动点击输入字段中的我。例如,我点击搜索,然后在搜索页面上为我“点击”了该字段,所以我只需输入而不点击我的自己。我怎么能这样做?
答案 0 :(得分:3)
页面加载时使用 focus method 。
这样的事情:
<script type="text/javascript">
window.onload = function () {
document.getElementById("id-of-some-input-field").focus();
}
</script>
答案 1 :(得分:1)
您可以通过在所需的输入字段上设置所谓的“焦点”来完成此操作。这可以通过使用javascript来完成。这是一个例子,我希望它可以帮到你!
<html>
<head>
<title>Focus Example</title>
<script>
function setFocus() {
var loginForm = document.getElementById("login");
if (loginForm) {
loginForm["user"].focus();
}
}
</script>
</head>
<body onload="setFocus();">
<form id="login" method="post" action="">
<table>
<tr>
<td><div align="left">User Name:</div></td>
<td><div align="left"><input name="user" type="text"
size="30" maxlength="30" tabindex="1" /></div></td>
</tr>
<tr>
<td><div align="left">Password:</div></td>
<td><div align="left"><input name="password" type="password"
size="30" maxlength="50" tabindex="2" /></div></td>
</tr>
</form>
</body>
</html>