jQuery中insertAfter()方法用法实例
本文实例讲述了jQuery中insertAfter()方法用法。分享给大家供大家参考。具体分析如下:
此方法把匹配的元素插入到另一个指定的元素集合的后面。
insertAfter()方法与insertBefore()方法的作用相反。
语法结构:
$(selector).insertAfter(content)
参数列表:
实例代码:
<!DOCTYPEhtml> <html> <head> <metacharset="utf-8"> <metaname="author"content="https://www.nhooo.com/"/> <title>insertAfter()函数-毛票票</title> <styletype="text/css"> p{ width:100px; height:100px; border:1pxsolidred; } div{ width:200px; height:200px; border:1pxsolidblue; } </style> <scripttype="text/javascript"src="mytest/jQuery/jquery-1.8.3.js"></script> <scripttype="text/javascript"> $(document).ready(function(){ $("button").click(function(){ $("div").insertAfter("p"); }) }); </script> </head> <body> <div>我的前面会被插入内容</div> <p>我是p元素</p> <button>点击查看效果</button> </body> </html>
以上代码可以将div元素插入到p元素的下面,当然是外部的下面。
希望本文所述对大家的jQuery程序设计有所帮助。