jQuery 中的 replaceWith( content )方

首页 / jQuery入门教程 / jQuery 中的 replaceWith( content )方

replaceWith(content)方法将所有匹配的元素替换为指定的HTML或DOM元素。这将返回刚刚被替换的JQuery元素,该元素已从DOM中删除。

replaceWith( content ) - 语法

selector.replaceWith( content )

这是此方法使用的所有参数的描述-

链接:https://www.learnfk.comhttps://www.learnfk.com/jquery/dom-replacewith.html

来源:LearnFk无涯教程网

  • content    -  替换匹配元素的内容。

replaceWith( content ) - 示例

以下是一个简单的示例,简单说明了此方法的用法。这将单击的正方形替换为新的分区。将语法与 replaceAll(selector)方法进行比较。

无涯教程网

<html>
   <head>
      <title>The jQuery Example</title>
      <script type="text/javascript" 
         src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js">
      </script>
		
      <script type="text/javascript" language="javascript">
         $(document).ready(function() {
            $("div").click(function () {
               $(this).replaceWith( ('<div class="div"></div>') );
            });
         });
      </script>
		
      <style>
         .div{ margin:10px;padding:12px; border:2px solid #666; width:60px;}
      </style>
   </head>
	
   <body>
      <p>Click on any square below to see the result:</p>
		
      <div class="div" style="background-color:blue;">ONE</div>
      <div class="div" style="background-color:green;">TWO</div>
      <div class="div" style="background-color:red;">THREE</div>
   </body>
</html>

这将产生以下输出-

祝学习愉快!(内容编辑有误?请选中要编辑内容 -> 右键 -> 修改 -> 提交!)

技术教程推荐

React实战进阶45讲 -〔王沛〕

许式伟的架构课 -〔许式伟〕

编译原理之美 -〔宫文学〕

全栈工程师修炼指南 -〔熊燚(四火)〕

Kafka核心源码解读 -〔胡夕〕

编译原理实战课 -〔宫文学〕

Django快速开发实战 -〔吕召刚〕

Kubernetes入门实战课 -〔罗剑锋〕

快手 · 移动端音视频开发实战 -〔展晓凯〕

好记忆不如烂笔头。留下您的足迹吧 :)