jQuery | insertBefore() 与示例
insertBefore()是 jQuery 中的一个内置方法,用于在指定元素之前插入一些 HTML 内容。 HTML 内容将在每次出现指定元素之前插入。
句法:
$(content).insertBefore(target)
这里的 content 是需要在指定目标之前插入的 HTML 内容。
参数:它接受一个参数“target”,它是要插入内容的目标。
返回类型:它不返回任何值。
代码#1:
To learn jQuery
Click here to complete
输出:
在点击 div 内容之前 -
To learn jQuery
Click here to complete
点击div内容后——
You should follow GeeksForGeeks
To learn jQuery
Click here to complete
代码#2:
To learn jQuery
To learn coding
Click here to complete
输出:
在点击 div 内容之前 -
To learn jQuery
To learn coding
Click here to complete
点击div内容后——
You should follow GeeksForGeeks
To learn jQuery
You should follow GeeksForGeeks
To learn coding
Click here to complete