19.替换

Posted 重庆刘亦菲

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了19.替换相关的知识,希望对你有一定的参考价值。

replaceWith(): a.replaceWith(c) 用a替换c

replaceAll(): a.replaceAll(c)  用a替换所有的c

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
  <head>
    <title>05_替换节点.html</title>
    <meta http-equiv="content-type" content="text/html; charset=UTF-8">
	<script type="text/javascript" src="./js/jquery-1.8.3.js"></script>
	<script type="text/javascript">
	
	$(document).ready(function(){
		//1.用"<span>许木木</span>"替换id为span1的span
			$("#span1").replaceWith("徐木木");
		//2.用a标签替换全部class为span2的span
			$("<a href=‘#‘>xumumu</a>").replaceAll($(".span2"));
	});
		
    </script>
	</head>
	<html>
	   	<p>姓名:<span id="span1"></span></p>
		<p>邮箱1:<span class="span2"></span></p>
		<p>邮箱2:<span class="span2"></span></p>
	</html>
<script type="text/javascript">
		
</script>
</html>
<!--
replaceWith(content|fn)  a.replaceWith(c); 用c替换a
		replaceAll(selector)    a.replaceAll(c):  用a替换所有的c
-->

  

以上是关于19.替换的主要内容,如果未能解决你的问题,请参考以下文章

如何从主要活动中替换片段

用片段替换时操作栏向下移动

如何在android studio中用另一个片段替换一个片段

用片段替换某些东西

试图替换片段,但它一直显示相同的片段

19 01 11 javascript ?????????????????????(???????????????) ??????????????????????????????(代码片段