0

我的页面上有一堆单选按钮的 id:

id="scores_0" id="scores_1" 等等。我是 jquery 的新手,想知道是否有办法喜欢选择任何匹配的东西。

$("#scores_*").css("border", "2px none black")

ETC ?
还是我必须以某种方式动态正则表达式?

4

2 回答 2

4

试试下面

$('input[id^=scores_]'); //^= StartsWith
$('input[id*=scores_]'); //*= Contains
于 2012-12-07T17:22:41.610 回答
2

在此处阅读有关 jQuery 选择器的信息http://api.jquery.com/category/selectors/

$('[id^=scores_]') // <-- this selects all id starting with scores_
于 2012-12-07T17:21:10.893 回答