prependTo()方法的定义和用法:
此方法把匹配的元素插入指定元素内部的最前面。
prependTo()方法的作用和prepend()方法是相同的,但是在语法上是有差别的。
语法结构:
$(selector).prependTo(content)
参数列表:
(1).selector:要被插入的匹配元素。
(2).content:要被插入匹配元素的元素。
实例代码:
<!DOCTYPE html> <html> <head> <meta charset=" utf-8"> <meta name="author" content="http://www.softwhy.com/" /> <title>蚂蚁部落</title> <style type="text/css"> #box li { width: 350px; height: 25px; line-height: 25px; font-size: 12px; } </style> <script src="http://libs.baidu.com/jquery/1.9.0/jquery.js"></script> <script type="text/javascript"> $(document).ready(function () { $("#bt").click(function () { $("<li>蚂蚁部落新添加的元素</li>").prependTo("#box"); }) }) </script> </head> <body> <ul id="box"> <li>蚂蚁部落欢迎您,只有努力才会有美好的未来</li> <li>每一天都是新的,必须要好好把握。</li> <li>没有人一开始就是高手,必须要努力奋斗。</li> <li>未来都是虚无缥缈的,只有当前是现实。</li> <li>分享和互助式进步的最大原动力</li> <li>本站的url地址是softwhy.com</li> </ul> <input type="button" id="bt" value="查看效果"> </body> </html>
上面的代码可以将新创建li元素插入到ul元素的最前面。
原文地址是:http://www.softwhy.com/forum.php?mod=viewthread&tid=5283
时间: 2024-10-30 15:28:47