gpt4 book ai didi

jquery - 选择所有 id 可见的超链接

转载 作者:行者123 更新时间:2023-12-01 01:18:22 24 4
gpt4 key购买 nike

我的页面中有很多这样的超链接。其中一些是可见的,一些是隐藏的。

 <a class="close-reveal-modal" id="close_car2">&#215;</a>
<a class="close-reveal-modal" id="close_car3">&#215;</a>
<a class="close-reveal-modal" id="close_car4" style="display:none;" >&#215;</a>

所以现在我想迭代所有 id 以“close_”开头的可见超链接并获取索引,为超链接分配唯一的文本。

这是我的代码示例,但它不起作用。

$("a[id^='close_']").is(':visible').each(function (index) {
if(index=='0')
{
$(this).text('test');
}
});

如何解决这个问题?谢谢

最佳答案

尝试:

$("a[id^='close_']:visible").each(function (index) {

来自“is()”的文档:

Unlike other filtering methods, .is() does not create a new jQuery object. Instead, it allows you to test the contents of a jQuery object without modification.

关于jquery - 选择所有 id 可见的超链接,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8675541/

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