這篇文章主要介紹了jQuery中after()方法用法,以實例形式較為詳細的分析了after()方法的功能、特性與使用技巧,具有一定的參考借鑒價值,需要的朋友可以參考下
本文實例講述了jQuery中after()方法用法。分享給大家供大家參考。具體分析如下:
此方法可向每個符合元素的外部的尾部追加HTML內容。
特別說明:
此方法是追加內容,也就是原來的內容還在。
HTML內容就是內容中可以包含HTML標籤,並且能夠被瀏覽器渲染。
文字內容是先將內容中的HTML預設字元轉換成html字元實體,這樣HTML標籤就不會被渲染。
語法結構:
#程式碼如下:
$(selector).after(content)
實例程式碼:
實例一:
程式碼如下:
<!DOCTYPE html> <html> <head> <meta charset=" utf-8"> <meta name="author" content="http://www.jb51.net/" /> <title>脚本之家</title> <style type="text/css"> p { height:150px; width:150px; background-color :green; margin-top :10px; } </style> <script type="text/ javascript " src="mytest/jQuery/jquery-1.8.3.js"></script> <script type="text/javascript"> $(document).ready(function(){ $("p").after("<b> 好好学习</b>"); }) </script> </head> <body> <p></p> </body> </html>
在原來p內容的後面追加內容。
實例二:
程式碼如下:
<!DOCTYPE html> <html> <head> <meta charset=" utf-8"> <meta name="author" content="http://www.jb51.net/" /> <title>脚本之家</title> <style type="text/css"> p { height:150px; width:150px; background-color:green; margin-top:10px; } </style> <script type="text/javascript" src="mytest/jQuery/jquery-1.8.3.js"></script> <script type="text/javascript"> $(document).ready(function(){ $("button").click(function(){ $(".html").after("<b>好好学习</b>"); $(".text").text("<b>好好学习</b>"); }) }) </script> </head> <body> <p class="html"></p> <p class="text"></p> <button>点击查看效果</button> </body> </html>
透過此實例大家可以觀察一下html內容和文字內容的差別。
以上是jQuery中after()方法用法實例的詳細內容。更多資訊請關注PHP中文網其他相關文章!