📜  jQuery | [属性!=值] 选择器

📅  最后修改于: 2021-11-25 04:26:47             🧑  作者: Mango

jquery 中的[attribute!=value] 选择器用于选择每个没有指定属性和值的元素。
句法:

$("[attribute!='value']")

范围:

  • 属性:需要此参数来指定要搜索的属性。
  • value:需要该参数来指定要搜索的值。

示例 1:



  

    
     
  

  

    
        

Welcome to GeeksForGeeks       

           

Geeks

        

For

        

GEEKS

        

        Who is your favourite:         
                
  • Geeks1
  •             
  • Geeks2
  •             
  • Geeks3
  •         
    
     

输出:

示例 2:



  

    
    

  

    
        

Welcome to GeeksForGeeks       

           

Geeks

        

For

        

GEEKS

        

        Who is your favourite:         
                
  • Geeks1
  •             
  • Geeks2
  •             
  • Geeks3
  •         
    
     

输出: