📌  相关文章
📜  如何使用 jQuery 选择具有多个类的元素?

📅  最后修改于: 2021-11-24 05:25:51             🧑  作者: Mango

使用 jQuery 选择具有多个类的元素有两个过程。下面通过适当的示例对这两个过程进行了描述。

使用 filter() 方法:通过使用 filter() 方法,我们可以过滤掉所有与所选条件不匹配的元素,这些匹配的元素将被返回。

  • 句法:
    $(selector).filter(criteria, function(index))
  • 例子:
     
     
      
     
         
            jQuery | Select an element
            with multiple classes
         
          
         
      
        
     
      
     
        

    GeeksforGeeks

           

            Select an element with         multiple classes     

             
    GeeksforGeeks
        
    jQuery
           
            Select an element with         multiple classes     
           
    Using
        
            filter() method     
                
  • 输出:

使用 .class Selector:通过使用 .class Selector 指定要选择的元素的类。它不应以数字开头。它为多个 HTML 元素提供样式。

  • 句法:
    $(".class1.class2.class3...")
  • 例子:
     
     
      
     
         
            jQuery | Select an element
            with multiple classes
         
          
         
          
        
     
      
     
        

    GeeksforGeeks

                 

              Select an element with         multiple classes     

                 
    GeeksforGeeks
        
    jQuery
               
            Select an element with         multiple classes     
               
    Using
        
            .class Selector Method     
                    
  • 输出: