jQuery 中的 Prepend方法函数

首页 / jQuery入门教程 / jQuery 中的 Prepend方法函数

prepend(Content)方法将内容预置到每个匹配元素的内部。

将其与append(Content)方法进行比较。

无涯教程网

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

来源:LearnFk无涯教程网

Prepend - 语法

selector.prepend( content )

下面是此方法-使用的所有参数的说明

  • content    -  要在每个目标之后插入的数据。这可以是HTML或文本内容

Prepend - 示例

下面是一个简单的示例,一个简单的示例显示了这个方法-的用法

<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).prepend('<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;"></div>
      <div class = "div" style = "background-color:green;"></div>
      <div class = "div" style = "background-color:red;"></div>
   </body>
</html>

这将产生以下输出-

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

技术教程推荐

趣谈网络协议 -〔刘超〕

面试现场 -〔白海飞〕

深入浅出云计算 -〔何恺铎〕

重学线性代数 -〔朱维刚〕

数据分析思维课 -〔郭炜〕

陈天 · Rust 编程第一课 -〔陈天〕

大数据经典论文解读 -〔徐文浩〕

手把手教你落地DDD -〔钟敬〕

Python实战 · 从0到1搭建直播视频平台 -〔Barry〕

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