Posted in Javascript onJanuary 16, 2015
本文实例讲述了jQuery中replaceAll()方法用法。分享给大家供大家参考。具体分析如下:
此方法用匹配元素去替换指定的内容。
replaceAll()方法的作用和replaceWith()方法是完全一样的。
语法结构:
$(content).replaceAll(selector)
参数列表:
参数 | 描述 |
content | 用于替换的内容。 |
selector | 用于查找所要被替换的元素 |
实例实例:
<!DOCTYPE html> <html> <head> <meta charset=" utf-8"> <meta name="author" content="https://3water.com/" /> <title>三水点靠木</title> <style type="text/css"> div{ width:100px; height:100px; border:1px solid blue; } p{ width:150px; height:150px; border:1px solid red; } </style> <script src="jquery/1.9.0/jquery.js"></script> <script type="text/javascript"> $(document).ready(function(){ $("button").click(function(){ $("<div>这是div元素</div>").replaceAll("p"); }); }); </script> </head> <body> <p>这是p元素</p> <p>这是p元素</p> <p>这是p元素</p> <button>用div包裹每个段落</button> </body> </html>
希望本文所述对大家的jQuery程序设计有所帮助。
jQuery中replaceAll()方法用法实例
- Author -
shichen2014声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@