如何使用 jQuery 的each 函数将索引号绑定到事件?

发布于 2024-11-03 16:41:35 字数 466 浏览 1 评论 0原文

我有一个想要用特定数字执行的函数。该数字是动态的,具体取决于 ul 元素中的元素数量。在此示例中,假设有 10 个 li 元素。

function alertThisNum(itemNum) {
    alert(itemNum);
}

$('ul li').each(function(index) {
    itemNum = index + 1;
    $("a#" + itemNum).bind("click", function() {
        alertThisNum(itemNum);
    });
});

问题是,itemNum 始终是最后一个数字。它将数字 10 绑定到所有链接。

如何让 a.1 提醒“1”,a.2 提醒“2”,依此类推?

I have a function that I want to execute with a particular number. That number is dynamic, depending on the number of elements in a ul element. In this example, let's say there are 10 li elements.

function alertThisNum(itemNum) {
    alert(itemNum);
}

$('ul li').each(function(index) {
    itemNum = index + 1;
    $("a#" + itemNum).bind("click", function() {
        alertThisNum(itemNum);
    });
});

The problem is, itemNum is always the last number. It binds the number 10 to all the links.

How do I get a.1 to alert "1", a.2 to alert "2", and so on?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

赢得她心 2024-11-10 16:41:36

通过在此行 itemNum = index + 1; 前面添加 var 关键字来本地化您的 itemNum 变量:

var itemNum = index + 1;

http://jsfiddle.net/JAAulde/FnSmA/

Localize your itemNum variable by preceding this line itemNum = index + 1; with the var keyword:

var itemNum = index + 1;

http://jsfiddle.net/JAAulde/FnSmA/

溺孤伤于心 2024-11-10 16:41:35

您需要使用 var 关键字在 each 回调中声明一个本地变量。

现在,您的所有回调都共享相同的 itemNum global

You need to declare a local variable in your each callback using the var keyword.

Right now, all of your callbacks are sharing the same itemNum global.

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