gpt4 book ai didi

jquery v1.3.2 按属性查找元素

转载 作者:行者123 更新时间:2023-12-03 21:34:52 24 4
gpt4 key购买 nike

我需要查找并迭代具有特定属性的所有子元素。以下代码在 jquery 1.2.6 中运行良好,但在 1.3.2 中抛出异常

$(parentElement).find('*[@someAttributeName]').each(function(index){
doSomething(this);
});

实现这一目标的正确方法是什么?

最佳答案

我相信,只要去掉@即可。

$(parentElement).find('[someAttributeName]').each(function(index){
doSomething(this);
});

来自 jQuery selector文档:

Note: In jQuery 1.3 [@attr] style selectors were removed (they were previously deprecated in jQuery 1.2). Simply remove the '@' symbol from your selectors in order to make them work again.

关于jquery v1.3.2 按属性查找元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/696968/

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