jquery after()方法
翻譯結果:
after
英[ˈɑ:ftə(r)] 美[ˈæftə(r)]
prep.…後的;(表示時間)在…以後;(表示位置、順序)在…後面
conj.在…以後
adv.以後,繼後
adj.後來的,以後的
jquery after()方法語法
作用:after() 方法在被選元素後插入指定的內容。
語法:$(selector).after(content
#參數:
說明 | |
必要。規定要插入的內容(可包含HTML 標籤)。 |
##語法: | 使用函數在被選元素之後插入指定的內容。 |
jquery after()方法範例
<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(){ $("button").click(function(){ $("p").after("<p>Hello world!</p>"); }); }); </script> </head> <body> <p>This is a paragraph.</p> <button>在每个 p 元素后插入内容</button> </body> </html>
#點擊 "執行實例" 按鈕查看線上實例