我的页面上有一堆单选按钮的 id:
id="scores_0" id="scores_1" 等等。我是 jquery 的新手,想知道是否有办法喜欢选择任何匹配的东西。
$("#scores_*").css("border", "2px none black")
ETC ?
还是我必须以某种方式动态正则表达式?
我的页面上有一堆单选按钮的 id:
id="scores_0" id="scores_1" 等等。我是 jquery 的新手,想知道是否有办法喜欢选择任何匹配的东西。
$("#scores_*").css("border", "2px none black")
ETC ?
还是我必须以某种方式动态正则表达式?
试试下面
$('input[id^=scores_]'); //^= StartsWith
$('input[id*=scores_]'); //*= Contains
在此处阅读有关 jQuery 选择器的信息http://api.jquery.com/category/selectors/
$('[id^=scores_]') // <-- this selects all id starting with scores_