jQuery [attribute!= value]选择器

时间:2018-09-13 06:03:40

标签: ajax

仅基于无选择返回一个jQuery选择器是什么?

    parent_fieldset.find('select option:selected').each(function () {
        if( $(this).val() == "" ) {
            $(this).addClass('input-error');
            next_step = false;
        }
        else 
        {
            $(this).removeClass('input-error');
        }
    });

1 个答案:

答案 0 :(得分:0)

您可以使用jquery的Attribute Not Equal Selector或通常的:not() selector来过滤元素:

$("input[name!='myName']").addClass("myClass");
$("input:not(:checked) + span").css("background-color", "yellow");

更新

基于评论,要获得选择的未选择选项:

 parent_fieldset.find('select option: not(:selected)')