gpt4 book ai didi

javascript - 如何在 jQuery 表达式中访问当前元素的属性?

转载 作者:行者123 更新时间:2023-11-30 10:24:58 26 4
gpt4 key购买 nike

我想对每个选定的元素调用一个函数:

$('any valid selector').existingFunction({ p1:<myAttributeValueForTheCurrentElement> });

我试过:

$('any valid selector').existingFunction({ p1: this.attr('myAttributeValueForTheCurrentElement') });

但显然这是指 HTMLDocument,因为我收到了错误消息:'对象 # 没有方法 'attr''

最佳答案

this 绑定(bind)到外部作用域。

您的代码等同于以下内容:

var obj = { p1: this.attr('myAttributeValueForTheCurrentElement') };

$('any valid selector').existingFunction(obj);

您将需要迭代集合中的元素。

$('selector').each(function(){

var options = { p1: $(this).attr('myAttributeValueForTheCurrentElement') };

$(this).existingFunction(options);

});

关于javascript - 如何在 jQuery 表达式中访问当前元素的属性?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20053268/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com