2

为什么此功能不适用于 jquery-mobile?

当我点击任何元素时,它会触发警报(“cell Nº”+60)

function insertOnClick(){
    for (j = 0; j < 6; j++) {
        for (i = 1; i < 11; i++) {
            n = 10 * j + i;
            el = "#num" + n;
            $(el).click(function() {
                alert("cell nº"+n);
            });
        }
    }
}
4

4 回答 4

6

正如所写的那样,n 将始终是您分配该变量的最后一个数字-它将是执行单击处理程序时的值,而不是您定义函数的值。

使用闭包

你需要使用闭包来实现你想要的:

function insertOnClick(){
    for (j = 0; j < 6; j++) {
        for (i = 1; i < 11; i++) {
            n = 10 * j + i;

            (function(number) {

                el = "#num" + number;
                $(el).click(function() {
                    alert("cell nº"+number);
                });

            }(n));
        }
    }
}

更好的主意

不过,使用单个处理程序会更好:

$('someselector').click(function(e) {
    var number = $(this)[0].id.replace('num', '');
    alert("cell nº" + number);
});
于 2012-10-23T16:41:30.907 回答
1
$('[id^="num"]').click(function() {
    alert($(this).attr('id').slice(3))
})
于 2012-10-23T16:59:12.140 回答
1

由于您使用的是 jQuery,因此没有理由进行任何循环,也没有理由为每个元素添加点击事件。给每个元素一个公共类,并在 jQuery 1.7+ 中使用。

$(document).on("click", ".commonClass", function() {
    var elem = $(this);
    alert(elem.prop("id"));
});
于 2012-10-23T17:02:16.043 回答
0
function insertOnClick(){
    for (j = 0; j < 6; j++) {
        for (i = 1; i < 11; i++) {
            n = 10 * j + i;
            el = "#num" + n;
            $(el).click(function(n) {
                return function(){
                alert("cell nº"+n);
                }
            }());
        }
    }
}
于 2012-10-23T16:43:43.663 回答