JQuery将Attribute与selector结合使用

时间:2015-08-19 18:09:28

标签: jquery

$('div[id^="start_with"] and not [id$="end_with"]').each(function () {
    //TO DO
});

如果有多个选择器,如何组合多个选择器?

1 个答案:

答案 0 :(得分:2)

在第一个属性条件

之后立即使用:not()(不带任何空格)
$('div[id^="start_with"]:not([id$="end_with"])').each(function () {
    //TO DO
});