构建一个选择器

时间:2011-10-20 17:13:30

标签: jquery-selectors

我尝试构建自己的选择器,但是我遇到了错误。

萤火虫告诉我:

缺少)参数列表

之后
$("#for_" + $(this)attr('id') + "").click(function() {

    alert($(this).attr("id"));

});
有人可以帮助我吗?

2 个答案:

答案 0 :(得分:0)

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

你错过了.。在指定的地点。应该是

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

答案 1 :(得分:0)

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

你没忘记“。”在attr之前?