jQuery中prependTo()方法用法实例
本文实例讲述了jQuery中prependTo()方法用法。分享给大家供大家参考。具体分析如下:
此方法把匹配的元素插入指定元素之前。
prependTo()方法的作用和prepend()方法是相同的,但是在语法上是有差别的,虽然在形式上看起来是一样的。
语法结构:
$(selector).prependTo(content)
参数列表:
实例代码:
<!DOCTYPEhtml> <html> <head> <metacharset="utf-8"> <metaname="author"content="https://www.nhooo.com/"/> <title>prependTo()函数-毛票票</title> <styletype="text/css"> p { height:100px; width:100px; border:1pxsolidblue; } div { height:200px; width:200px; border:1pxsolidgreen; } </style> <scripttype="text/javascript"src="mytest/jQuery/jquery-1.8.3.js"></script> <scripttype="text/javascript"> $(document).ready(function(){ $("button").click(function(){ $("p").prependTo("div"); }) }) </script> </head> <body> <p>我是p的内容</p> <div>我是div</div> <button>点击查看效果</button> </body> </html>
注意:运行编辑器之后,再按F5刷新网页即可查看演示。
以上代码在点击按钮之后可以将p元素移动到div内部的前方。
希望本文所述对大家的jQuery程序设计有所帮助。