jQ在元素的不同位置插入元素

简介: jQ在元素的不同位置插入元素

 在html页面中,我们可以使用jquery将需要新增的元素添加到指定元素的指定位置。
1. append()
  append()方法可以在 目标元素内部 的 尾部 插入元素,插入的元素作为最后一个子元素。

<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<html>
<head runat="server">
<meta http-equiv="pragram" content="no-cache" />
<meta http-equiv="cache-control" content="no-cache, must-revalidate" />
<meta http-equiv="expires" content="0" />
<meta charset="utf-8" />
<script src="js/jquery-1.11.0.min.js" type="text/javascript"></script>
</head>
<style>
*, html, body {
   
    margin: 0;
    padding: 0;
    border: 0;
}
</style>

<script type="text/javascript">
    // 在目标元素内部最后附加一个元素
    $(function () {
   
        $(".container").append('<li style="color:blue">第三个元素</li>');
    })
</script>
<body>
    <div id="content">
        <h2>元素插入</h2>
        <ul class="container">
            <li>第一个元素</li>
            <li>第二个元素</li>
        </ul>
    </div>
</body>
</html>

2. appendTo()
   appendTo()方法将匹配元素插入到 目标元素 内部 的尾部。


<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<html>
<head runat="server">
<meta http-equiv="pragram" content="no-cache" />
<meta http-equiv="cache-control" content="no-cache, must-revalidate" />
<meta http-equiv="expires" content="0" />
<meta charset="utf-8" />
<script src="js/jquery-1.11.0.min.js" type="text/javascript"></script>
</head>
<style>
*, html, body {
   
    margin: 0;
    padding: 0;
    border: 0;
}
</style>

<script type="text/javascript">
     // 在目标元素内部最后附加一个元素
    $(function () {
   
        $('<li style="color:blue">第三个元素</li>').appendTo(".container");
    })
</script>
<body>
    <div id="content">
        <h2>元素插入</h2>
        <ul class="container">
            <li>第一个元素</li>
            <li>第二个元素</li>
        </ul>
    </div>
</body>
</html>

3. prepend()
   prepend()方法在目标元素内部的最前面插入指定的元素,并返回一个jQuery对象。指定的元素被插入到每个匹配元素里面的最前面,作为它的第一个子元素。


<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<html>
<head runat="server">
<meta http-equiv="pragram" content="no-cache" />
<meta http-equiv="cache-control" content="no-cache, must-revalidate" />
<meta http-equiv="expires" content="0" />
<meta charset="utf-8" />
<script src="js/jquery-1.11.0.min.js" type="text/javascript"></script>
</head>
<style>
*, html, body {
   
    margin: 0;
    padding: 0;
    border: 0;
}
</style>

<script type="text/javascript">
     // 在目标元素内部最前面插入一个元素
    $(function () {
   
        $(".container").prepend('<li style="color:blue">第零个元素</li>');
    })
</script>
<body>
    <div id="content">
        <h2>元素插入</h2>
        <ul class="container">
            <li>第一个元素</li>
            <li>第二个元素</li>
        </ul>
    </div>
</body>
</html>

4. prependTo()
   prependTo()方法将指定元素插入到 目标元素 内部 的最前面


<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<html>
<head runat="server">
<meta http-equiv="pragram" content="no-cache" />
<meta http-equiv="cache-control" content="no-cache, must-revalidate" />
<meta http-equiv="expires" content="0" />
<meta charset="utf-8" />
<script src="js/jquery-1.11.0.min.js" type="text/javascript"></script>
</head>
<style>
*, html, body {
   
    margin: 0;
    padding: 0;
    border: 0;
}
</style>

<script type="text/javascript">
     //在目标元素内部最前面插入一个元素
    $(function () {
   
        $(".container").prepend('<li style="color:blue">第零个元素</li>');
    })
</script>
<body>
    <div id="content">
        <h2>元素插入</h2>
        <ul class="container">
            <li>第一个元素</li>
            <li>第二个元素</li>
        </ul>
    </div>
</body>
</html>
相关文章
|
6月前
|
JavaScript 前端开发
页面插入元素
页面插入元素
54 8
|
6月前
|
前端开发 Java
java前端:删除数组中指定元素的方法
java前端:删除数组中指定元素的方法
107 1
|
6月前
|
C++
移除元素(C++)
移除元素(C++)
34 0
|
2天前
查找数组中最大的元素值
【10月更文挑战第29天】查找数组中最大的元素值。
11 4
|
5月前
|
C++
C++数组中插入元素。
C++数组中插入元素。
|
5月前
27.移除元素
27.移除元素
|
6月前
如何删除数组中的某个元素?
如何删除数组中的某个元素?
70 0
曲线救国 —— 删除数组的指定元素
曲线救国 —— 删除数组的指定元素
37 0
|
算法 C++
移除元素:原地去除特定元素的神奇操作
在本篇文章中,我们将探讨题目 "移除元素",要求在给定一个数组 nums 和一个值 val 的情况下,原地移除所有数值等于 val 的元素,并返回移除后数组的新长度。我们将会深入解析如何使用双指针技巧,实现一个高效的算法来解决这个问题。
106 0
|
Python
LeetCode 1299. 将每个元素替换为右侧最大元素
给你一个数组 arr ,请你将每个元素用它右边最大的元素替换,如果是最后一个元素,用 -1 替换。
93 0