构建一个选择器

发布于 2024-12-11 05:13:19 字数 194 浏览 0 评论 0原文

我尝试构建自己的选择器,但出现错误。

萤火虫告诉我:

参数列表后缺少)

$("#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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

客…行舟 2024-12-18 05:13:19
$("#for_" + $(this)attr('id') + "").click(function() {
                   ^---

您缺少 .。在指定地点。应该是

$("#for_" + $(this).attr('id') + "").click(function() {
$("#for_" + $(this)attr('id') + "").click(function() {
                   ^---

You're missing a .. at the indicated spot. Should be

$("#for_" + $(this).attr('id') + "").click(function() {
瀞厅☆埖开 2024-12-18 05:13:19
$("#for_" + $(this).attr('id')).click(function() {
    alert($(this).attr("id"));
});

你是不是忘记了“。”在属性之前?

$("#for_" + $(this).attr('id')).click(function() {
    alert($(this).attr("id"));
});

Didnt you forget "." before attr?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文