定義和用法
after() 方法在被選元素後插入指定的內容。
效果體驗:http:///keleyi/phtml/jquery/13.htm
語法
$(selector).after(content)
參數content是必需的。規定要插入的內容(可包含 HTML 標簽)。
after方法還可以使用函數來插入內容
即使用函數在被選元素之後插入指定的內容。
語法
$(selector).after(function(index))
參數 function(index) 為必需。規定返回待插入內容的函數。
index - 可選。接收選擇器的 index 位置。
示例代碼:
<html>
<head>
<script type="text/javascript" src="http:///keleyi/pmedia/jquery/jquery-1.10.2.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$("button").click(function(){
$("p").after(function(n){
return "<p>The p element above has index " + n + "</p>";
});
});
});
</script>
</head>
<body>
<h1>This is a heading</h1>
<p>This is a paragraph.</p>
<p>This is another paragraph.</p>
<button>在每個 p 元素後插入內容</button>
</body>
</html>
更多參考:http:///a/bjac/2oncd079.htm