gpt4 book ai didi

jquery - 是否有标识符 (id) 的通配符选择器?

转载 作者:IT王子 更新时间:2023-10-29 03:26:34 26 4
gpt4 key购买 nike

如果我有未知数量的标识符共享一个特定的命名方案,有没有办法使用 jQuery 一次获取它们?

// These are the IDs I'd like to select
#instance1
#instance2
#instance3
#instance4

// What do I need to add or how do I need to modify this jQuery selector in order to select all the IDs above?
("#instanceWILDCARD").click(function(){}

最佳答案

attribute starts-with selector ('^=)将适用于您的 ID,如下所示:

$("[id^=instance]").click(function() {
//do stuff
});

但是,请考虑为您的元素提供一个通用类,例如(我搞笑了).instance,并使用该选择器:

$(".instance").click(function() {
//do stuff
});

关于jquery - 是否有标识符 (id) 的通配符选择器?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3697542/

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