.net或js实现“打开一个新界面,光标默认停留在第一个待输入的文本框中”
发布网友
发布时间:2022-11-03 09:46
我来回答
共3个回答
热心网友
时间:2023-10-31 04:04
<body onload="document.getElementById('txt').focus();">
<input type="text" id="txt">
热心网友
时间:2023-10-31 04:05
<!doctype html>
<html><head>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8">
<script language="JavaScript" type="text/javascript">
window.onload=function c (){
document.getElementById('aa').focus();
}
</script>
</head><body>
<input id=aa type="text" size=40 value=''>
</body>
</html>
热心网友
时间:2023-10-31 04:05
设置TabIndex就可以了