构建一个选择器
我尝试构建自己的选择器,但出现错误。
萤火虫告诉我:
参数列表后缺少)
$("#for_" + $(this)attr('id') + "").click(function() {
alert($(this).attr("id"));
});
有人可以帮助我吗?
i try to build my own selector but I get errors.
firebug tell me:
missing ) after argument list
$("#for_" + $(this)attr('id') + "").click(function() {
alert($(this).attr("id"));
});
could somebody help me plaese?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您缺少
.
。在指定地点。应该是You're missing a
.
. at the indicated spot. Should be你是不是忘记了“。”在属性之前?
Didnt you forget "." before attr?