标签: jquery
$('div[id^="start_with"] and not [id$="end_with"]').each(function () { //TO DO });
如果有多个选择器,如何组合多个选择器?
答案 0 :(得分:2)
在第一个属性条件
$('div[id^="start_with"]:not([id$="end_with"])').each(function () { //TO DO });