就是想选中文本框时让 文字选中 为什么放在window.onload里面就不行 放在外面才可以?<!DOCTYPE html><html><head>
<title></title>
<script language="javascript" type="text/javascript">
window.onload=function(){ function getFocus() { document.getElementById("test").select();
}
} </script>
</head>
<body>
<form id="f1">
<input type="text" id="test" name="test" value="你好嗎?" onfocus="getFocus();"/>
<button type="submit">aaa</button>
</form>
</body>
</html>
添加回答
举报
0/150
提交
取消