jQuery replaceWith()方法

antzone發表於2017-03-29

關於此replaceWith()方法的基本概念用法可以參閱jQuery replaceWith()一章節。

下面再來通過程式碼例項演示一下它的一些用法。

程式碼例項:

[HTML] 純文字檢視 複製程式碼
<!DOCTYPE html>
<html>
<head>
<meta charset=" utf-8">
<meta name="author" content="http://www.softwhy.com/" />
<title>螞蟻部落</title>
<script src="http://libs.baidu.com/jquery/1.9.0/jquery.js"></script>
<script type="text/javascript">
$(document).ready(function(){
  $("#bt").click(function(){
    $("p").replaceWith("<div>div元素</div>");
  })
})
</script>
</head>
<body>
<p>p元素</p>
<p>p元素</p>
<p>p元素</p>
<input type="button" id="bt" value="檢視效果"/>
</body>
</html>

上面的程式碼replaceWith()方法的基本用法,非常的簡單,沒必要多做介紹。可能在實際應用中還會遇到這樣的類似情況,比如一些雙語的頁面,也可以實現此方法實現相關的替換功能。

程式碼例項如下:

[HTML] 純文字檢視 複製程式碼
<!DOCTYPE html>
<html>
<head>
<meta charset=" utf-8">
<meta name="author" content="http://www.softwhy.com/" />
<title>螞蟻部落</title>
<script src="http://libs.baidu.com/jquery/1.9.0/jquery.js"></script>
<script type="text/javascript">
var trans={
  '螞蟻部落':'softwhy.com',
  '地址':'address'
};
$(document).ready(function(){
  $("#bt").click(function(){
    $("div").each(function(index,element){
      $(this).replaceWith("<div>"+trans[$(this).html()]+"</div>");
    });
  })
})
</script>
</head>
<body>
<div>螞蟻部落</div>
<div>地址</div>
<input type="button" id="bt" value="檢視效果"/>
</body>
</html>

上面的程式碼實現了基本的翻譯功能,非常的簡單這裡就不多介紹了。

相關文章