JS为什么这个加上window.onload就不能选中文本框的内容了?
但是这个window.onload又不能去掉啊<!DOCTYPEhtml><html><head><title></title><scriptlanguage="java...
但是这个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();"/>
</form>
</body>
</html> 展开
<!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();"/>
</form>
</body>
</html> 展开
2个回答
展开全部
你的代码报错了啊,function后面没有(),你可以这么写
<!DOCTYPE html>
<html>
<head>
<title></title>
<script language="javascript" type="text/javascript">
window.onload = function () {
getFocus();
}
function getFocus() {
document.getElementById("test").select();
}
</script>
</head>
<body>
<form id="f1">
<input type="text" id="test" name="test" value="你好吗?" onfocus="getFocus();"/>
</form>
</body>
</html>
更多追问追答
追问
还是不行 怎么办?
追答
你只是把括号加上了么?
window.onload里面不能定义函数
你的把函数拿出来,你像我这么写,就没错了
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
你这样就是在函数体里定义函数,当然就找不到这个 getFocus 函数了啊
追问
应该怎么办呢
追答
window.onload = function() {
};
function getFocus() {
document.getElementById("test").select();
}
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询