DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> JavaScript入門知識 >> jQuery入門知識 >> JQuery特效代碼 >> jQuery中replaceAll()方法用法實例教程
jQuery中replaceAll()方法用法實例教程
編輯:JQuery特效代碼     

本文實例講述了jQuery中replaceAll()方法用法。分享給大家供大家參考。具體分析如下:

此方法用匹配元素去替換指定的內容。
replaceAll()方法的作用和replaceWith()方法是完全一樣的。

語法結構:
代碼如下:$(content).replaceAll(selector)

參數列表:
參數 描述 content 用於替換的內容。 selector 用於查找所要被替換的元素

實例實例:

代碼如下:
<!DOCTYPE html>
<html>
<head>
<meta charset=" utf-8">
<meta name="author" content="http://www.cnblogs.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程序設計有所幫助。

XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved