这段javascript代码为什么无效(我让一个按钮执行另一个按纽的操作)
<inputtype="button"id="button1"value="按钮1"onclick="Click()";/><inputtype="button"id="...
<input type="button" id="button1" value="按钮1" onclick="Click()"; />
<input type="button" id="button2" value="按钮2" onclick="document.getElementById(button1).onclick()"; />
为什么点了按钮2没反映 展开
<input type="button" id="button2" value="按钮2" onclick="document.getElementById(button1).onclick()"; />
为什么点了按钮2没反映 展开
展开全部
您好!这里的button1要加单引号的。
<input type="button" id="button2" value="按钮2" onclick="document.getElementById(button1).onclick()"; />
改成
<input type="button" id="button2" value="按钮2" onclick="document.getElementById('button1').onclick()"; />
希望对您有帮助!
<input type="button" id="button2" value="按钮2" onclick="document.getElementById(button1).onclick()"; />
改成
<input type="button" id="button2" value="按钮2" onclick="document.getElementById('button1').onclick()"; />
希望对您有帮助!
追问
还是没效果。。。 我又检查了一下确定是button2里写的有问题
追答
我这里试了都没有问题,您的Click事件定义了没有?
function Click()
{
alert(111);
}
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询