jquery通过id来判断是那个按钮被点击了,然后执行不同的事件,下列代码执不能实现相应的功能
<!DOCTYPEhtml><html><head><metahttp-equiv="content-type"content="text/html;charset=UT...
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8"/>
<title>Plupload - Events example</title>
</head>
<script>
$(".btn").click(function(){
alert('$(this).attr("id")');
});
</script>
<body style="font: 13px Verdana; background: #eee; color: #333">
<div id="parent">
<input id="b1" class="btn" type="button" value="还是点我"></input>
<input id="b2" class="btn" type="button" value="那点你吧"></input>
</div>
</body>
</html> 展开
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8"/>
<title>Plupload - Events example</title>
</head>
<script>
$(".btn").click(function(){
alert('$(this).attr("id")');
});
</script>
<body style="font: 13px Verdana; background: #eee; color: #333">
<div id="parent">
<input id="b1" class="btn" type="button" value="还是点我"></input>
<input id="b2" class="btn" type="button" value="那点你吧"></input>
</div>
</body>
</html> 展开
1个回答
展开全部
在click事件外面加上$.ready(function(){
$(".btn").click(function(){
alert('$(this).attr("id")');
});
});
这是要绑定的。。。
你没有引入jquery的包。。。
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8"/>
<title>Plupload - Events example</title>
<script src="jquery/jquery-1.11.1.js"></script>
</head>
<script>
$(document).ready(function(){
$(".btn").click(function(){
alert($(this).attr("id"));
});
});
</script>
<body style="font: 13px Verdana; background: #eee; color: #333">
<div id="parent">
<input id="b1" class="btn" type="button" value="这是">
<input id="b2" class="btn" type="button" value="那是">
</div>
</body>
</html>
$(".btn").click(function(){
alert('$(this).attr("id")');
});
});
这是要绑定的。。。
你没有引入jquery的包。。。
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8"/>
<title>Plupload - Events example</title>
<script src="jquery/jquery-1.11.1.js"></script>
</head>
<script>
$(document).ready(function(){
$(".btn").click(function(){
alert($(this).attr("id"));
});
});
</script>
<body style="font: 13px Verdana; background: #eee; color: #333">
<div id="parent">
<input id="b1" class="btn" type="button" value="这是">
<input id="b2" class="btn" type="button" value="那是">
</div>
</body>
</html>
更多追问追答
追问
还是不对,我加上了,也没有弹出任何东西,你试了试么?
追答
你试试上面那个
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询