jQuery replaceAll()

admin發表於2018-02-02

此方法用匹配元素替換每個目標元素。

語法結構:

[JavaScript] 純文字檢視 複製程式碼
.replaceAll(target)

引數解析:

target:規定哪些元素被替換,可以是選擇器字串,jQuery物件,DOM元素,或者元素陣列。

jQuery1.2版本新增。

程式碼例項:

[HTML] 純文字檢視 複製程式碼執行程式碼
<!DOCTYPE html>
<html>
<head>
<meta charset=" utf-8">
<meta name="author" content="http://www.softwhy.com/" />
<title>螞蟻部落</title>
<style type="text/css">
div{
  width:100px;
  height:100px;
  background-color:red;
  margin:5px;
}
p{
  width:150px;
  height:150px;
  background-color:blue;
  margin:5px;
}
</style>
<script src="https://code.jquery.com/jquery-3.0.0.js"></script>
<script type="text/javascript">
$(document).ready(function(){
  $("#bt").click(function () {
    $("<div></div>").replaceAll("p");
  });
});
</script>
</head>
<body>
<p></p>
<p></p>
<p></p>
<input type="button" id="bt" value="檢視演示" />
</body>
</html>

所有的p元素會被div元素替換。

相關文章