📜  jQuery | add() 方法与示例

📅  最后修改于: 2022-05-13 01:56:00.514000             🧑  作者: Mango

jQuery | add() 方法与示例

jQuery add()方法用于将元素添加到现有元素组中。如果定义了上下文参数,则此方法可以将元素添加到整个文档,或者仅在上下文元素中添加元素。
句法:

$(selector).add(element, context_parameter)

这里选择器有助于找到匹配的元素。
参数:它接受下面指定的两个参数:

  • 元素:它是被选中的元素。
  • context_parameter:它是定义的元素的上下文参数。


    显示 add() 方法工作的 jQuery 代码:

    
      
    
        
        
    
      
    
        

    Welcome to GfG!!!

        

    Welcome to GeeksforGeeks !!!

        Article 1 !!!.     
    This example adds the same css style for both         "p" and "span" elements, using its class and          id name!!!
      

    输出: