gpt4 book ai didi

jquery - 有没有办法简化我的 jQuery 选择器代码?

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

你能帮我简化这个选择器吗?

这是代码:

$("input[name='grpQuestion1'], input[name='grpQuestion2'], input[name='grpQuestion4']").change(function (event) {
/* Some code here */
});

最佳答案

试试这个

$('input[name^="grpQuestion"]').change(function (event) { /* Some Code Here */ });

jquery有一些属性选择

$("[attribue^=value]") 元素一样,属性以值词开头。$("[attribue$=value]") 元素,其属性以值词结尾。$("[attribue*=value]") 元素,其属性包含作为部分、单词或确切单词的值。$("[attribue~=value]") 元素,其属性包含精确单词的值

关于jquery - 有没有办法简化我的 jQuery 选择器代码?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12227705/

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