js同时给多个按钮添加点击事件
如何将以下代码合并<!DOCTYPEhtmlPUBLIC"-//W3C//DTDXHTML1.0Transitional//EN""http://www.w3.org/T...
如何将以下代码合并
<!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=utf-8" />
<title>无标题文档</title>
<script>
window.onload=function()
{
var Obtn=document.getElementById('btn1')
Obtn.onclick=function(){
alert('1')
}
var Obtn=document.getElementById('btn2')
Obtn.onclick=function(){
alert('2')
}
var Obtn=document.getElementById('btn3')
Obtn.onclick=function(){
alert('3')
}
var Obtn=document.getElementById('btn4')
Obtn.onclick=function(){
alert('4')
}
var Obtn=document.getElementById('btn5')
Obtn.onclick=function(){
alert('5')
}
}
</script>
</head>
<body>
<input type="button" value="按钮1" id="btn1">
<input type="button" value="按钮2" id="btn2">
<input type="button" value="按钮3" id="btn3">
<input type="button" value="按钮4" id="btn4">
<input type="button" value="按钮5" id="btn5">
</body>
</html> 展开
<!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=utf-8" />
<title>无标题文档</title>
<script>
window.onload=function()
{
var Obtn=document.getElementById('btn1')
Obtn.onclick=function(){
alert('1')
}
var Obtn=document.getElementById('btn2')
Obtn.onclick=function(){
alert('2')
}
var Obtn=document.getElementById('btn3')
Obtn.onclick=function(){
alert('3')
}
var Obtn=document.getElementById('btn4')
Obtn.onclick=function(){
alert('4')
}
var Obtn=document.getElementById('btn5')
Obtn.onclick=function(){
alert('5')
}
}
</script>
</head>
<body>
<input type="button" value="按钮1" id="btn1">
<input type="button" value="按钮2" id="btn2">
<input type="button" value="按钮3" id="btn3">
<input type="button" value="按钮4" id="btn4">
<input type="button" value="按钮5" id="btn5">
</body>
</html> 展开
2个回答
展开全部
for(var i=1;i<6;i++){
$("#btn"+i).click(function(){
alert(i);
});
}
$("#btn"+i).click(function(){
alert(i);
});
}
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
引用tangyan16的回答:
for(var i=1;i<6;i++){
$("#btn"+i).click(function(){
alert(i);
});
}
for(var i=1;i<6;i++){
$("#btn"+i).click(function(){
alert(i);
});
}
展开全部
for(var i=1;i<5;i++){
$("#btn"+i).click(function(e){
alert(this.value);
});
}
$("#btn"+i).click(function(e){
alert(this.value);
});
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询