如何使用 jQuery 的each 函数将索引号绑定到事件?
我有一个想要用特定数字执行的函数。该数字是动态的,具体取决于 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
通过在此行
itemNum = index + 1;
前面添加var
关键字来本地化您的itemNum
变量:http://jsfiddle.net/JAAulde/FnSmA/
Localize your
itemNum
variable by preceding this lineitemNum = index + 1;
with thevar
keyword:http://jsfiddle.net/JAAulde/FnSmA/
您需要使用
var
关键字在each
回调中声明一个本地变量。现在,您的所有回调都共享相同的
itemNum
global。You need to declare a local variable in your
each
callback using thevar
keyword.Right now, all of your callbacks are sharing the same
itemNum
global.