定義和用法
after() 方法在被選元素後插入指定的內容。
語法
$(selector).after(content)
參數 描述
content 必要。規定要插入的內容(可包含 HTML 標籤)。
使用函數在被選元素之後插入指定的內容。
語法
$(selector).after(function(index))
參數 描述
function(index)
必要。規定傳回待插入內容的函數。
index - 可選。接收選擇器的 index 位置。
法一:
在每個p元素後面插入內容:
程式碼如下:
$("button").click(function(){ $("p").after("<p>Hello world!</p>"); });
法二:
#程式碼如下:
$("button").click(function(){ $("p").after(function(n){ return "<p>The p element above has index " + n + "</p>"; }); });
以上是解析jQuery中after的兩種用法的詳細內容。更多資訊請關注PHP中文網其他相關文章!