jQuery 文档操作 - before() 方法
实例
在每个 p 元素前插入内容:
- $("button").click(function(){
- $("p").
before("<p>Hello world!</p>")
;- });
定义和用法
before() 方法在被选元素前插入指定的内容。
语法
- $(selector).before(content)
参数 | 描述 |
---|---|
content | 必需。规定要插入的内容(可包含 HTML 标签)。 |
使用函数来插入内容
使用函数在指定的元素前面插入内容。
语法
- $(selector).before(function(index))
参数 | 描述 |
---|---|
function(index) | 必需。规定返回待插入内容的函数。 - index - 可选。接收选择器的 index 位置。 |