js中onload不执行
<!DOCTYPEhtmlPUBLIC"-//W3C//DTDXHTML1.0Transitional//EN""http://www.w3.org/TR/xhtml1/...
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>无标题文档</title>
<script type="text/javascript">
window.onloda=function ()
{
var Obtn=document.getElementByTagName('input');
var i=0;
for(i=0;i<Obtn.length;i++);
{
Obtn[i].click=function ()
{
alert('a');
};
}
}
</script>
</head>
<body>
<input type="button" value="按钮1">
<input type="button" value="按钮2">
<input type="button" value="按钮3">
</body>
</html>
代码如上。。本人刚学习js,求大神指点怎么回事啊? 展开
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>无标题文档</title>
<script type="text/javascript">
window.onloda=function ()
{
var Obtn=document.getElementByTagName('input');
var i=0;
for(i=0;i<Obtn.length;i++);
{
Obtn[i].click=function ()
{
alert('a');
};
}
}
</script>
</head>
<body>
<input type="button" value="按钮1">
<input type="button" value="按钮2">
<input type="button" value="按钮3">
</body>
</html>
代码如上。。本人刚学习js,求大神指点怎么回事啊? 展开
3个回答
展开全部
你拼写错了,然后for循环后面不要跟;号
document.getElementsByTagName('input');这段你少了个s;
click应该写成onclick
改成后的应该是
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>无标题文档</title>
<script type="text/javascript">
window.onload=function ()
{
var Obtn=document.getElementsByTagName('input');
console.log(Obtn);
var i=0;
for(i=0;i<Obtn.length;i++)
{
Obtn[i].onclick=function ()
{
alert('a');
};
}
}
</script>
</head>
<body>
<input type="button" value="按钮1">
<input type="button" value="按钮2">
<input type="button" value="按钮3">
</body>
</html>
document.getElementsByTagName('input');这段你少了个s;
click应该写成onclick
改成后的应该是
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>无标题文档</title>
<script type="text/javascript">
window.onload=function ()
{
var Obtn=document.getElementsByTagName('input');
console.log(Obtn);
var i=0;
for(i=0;i<Obtn.length;i++)
{
Obtn[i].onclick=function ()
{
alert('a');
};
}
}
</script>
</head>
<body>
<input type="button" value="按钮1">
<input type="button" value="按钮2">
<input type="button" value="按钮3">
</body>
</html>
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
亲,你的都写错了,是onload不是onloda,还有Obtn[i].click=function (),不是click是onclick
追问
谢谢亲😓我改正过来了,可是还不行
追答
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "
<html xmlns="
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>无标题文档</title>
<script type="text/javascript">
window.onload=function ()
{
var Obtn=document.getElementsByTagName('input');
var i=0;
for(i=0;i<Obtn.length;i++)
{
Obtn[i].onclick=function()
{
alert('a');
};
}
}
</script>
</head>
<body>
<input type="button" value="按钮1"/>
<input type="button" value="按钮2"/>
<input type="button" value="按钮3"/>
</body>
</html>
var Obtn=document.getElementByTagName('input');还有这里写错了,是getElementsByTagName中间少了个s,还有for(i=0;i<Obtn.length;i++);最后多了个分号
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询