标签: jquery
假设我有一系列元素,如:
<input id="box-2585"> <input id="box-2586">
如何选择$('#box-')等所有元素?
$('#box-')
答案 0 :(得分:3)
使用attribute starts with选择器^=
^=
$('[id^="box-"]')
这将使所有具有id 属性的元素1>开始 1>
box-
console.log($('[id^="box-"]').length);