标签: jquery
使用jQuery,如何选择id属性以某些字符串结尾的所有元素?
id
答案 0 :(得分:12)
有一个attribute-ends-with selector ([attr$=value]),就像这样:
[attr$=value]
$("[id$=something]")