adv.
??: before() ???? ??? ?? ?? ??? ??? ?????. ??: ??$(selector).before(content) ????: ??? ???? ??? ??: ??? ???? ??? ?? ?? ???? ?????. ??: ??$(selector).before(function(index)) ????: ??? ????? ??? "???? ??" ??? ?????jquery before()?? ???
Parameters Description content ?????. ??? ???? ?????(HTML ?? ?? ??). ???? Description function(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">在每個(gè)段落前面插入新的段落</button>
</body>
</html>
jquery before()??
??? ???? ????:2018-05-11 14:15:07
??? ???... ; ???...