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>
展开
 我来答
百度网友7b5bb3f
推荐于2016-10-27 · 超过13用户采纳过TA的回答
知道答主
回答量:123
采纳率:0%
帮助的人:34.2万
展开全部
在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>
更多追问追答
追问
还是不对,我加上了,也没有弹出任何东西,你试了试么?
追答
你试试上面那个
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式