jQuery | add() 方法与示例
jQuery add()方法用于将元素添加到现有元素组中。如果定义了上下文参数,则此方法可以将元素添加到整个文档,或者仅在上下文元素中添加元素。
句法:
$(selector).add(element, 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!!!
输出: