before
英 [bɪˈfɔ:(r)] 美 [bɪˈfɔr,-ˈfor]
prep.在…之前;先于,优于;当着…的面;与其…
conj.在…之前;在…以前;比…早些;与其…
adv.先前,从前;在前,在前方
jquery before() 方法 语法
作用:before() 方法在被选元素前插入指定的内容。
语法:$(selector).before(content)
参数:
参数 | 描述 |
content | 必需。规定要插入的内容(可包含 HTML 标签)。 |
使用函数来插入内容:使用函数在指定的元素前面插入内容。
语法:$(selector).before(function(index))
参数:
参数 | 描述 |
function(index) | 必需。规定返回待插入内容的函数。 |
index | 可选。接收选择器的 index 位置。 |
jquery before() 方法 示例
<html> <head> <script type="text/javascript" src="http://apps.bdimg.com/libs/jquery/2.1.1/jquery.min.js"></script> <script type="text/javascript"> $(document).ready(function(){ $(".btn1").click(function(){ $("p").before("<p>Hello world!</p>"); }); }); </script> </head> <body> <p>This is a paragraph.</p> <button class="btn1">在每个段落前面插入新的段落</button> </body> </html>
点击 "运行实例" 按钮查看在线实例