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>
相关文章
|
7月前
|
JavaScript 前端开发
页面插入元素
页面插入元素
57 8
|
7月前
|
前端开发 Java
java前端:删除数组中指定元素的方法
java前端:删除数组中指定元素的方法
116 1
|
1月前
查找数组中最大的元素值
【10月更文挑战第29天】查找数组中最大的元素值。
33 4
|
4月前
|
算法 索引
LeetCode第34题在排序数组中查找元素的第一个和最后一个位置
这篇文章介绍了LeetCode第34题"在排序数组中查找元素的第一个和最后一个位置"的解题方法,通过使用双指针法从数组两端向中间同时查找目标值,有效地找到了目标值的首次和最后一次出现的索引位置。
LeetCode第34题在排序数组中查找元素的第一个和最后一个位置
|
6月前
|
C++
C++数组中插入元素。
C++数组中插入元素。
|
7月前
在排序数组中查找元素的第一个和最后一个位置
在排序数组中查找元素的第一个和最后一个位置
|
7月前
如何删除数组中的某个元素?
如何删除数组中的某个元素?
81 0
|
7月前
|
算法
leetcode-34:在排序数组中查找元素的第一个和最后一个位置
leetcode-34:在排序数组中查找元素的第一个和最后一个位置
35 0
曲线救国 —— 删除数组的指定元素
曲线救国 —— 删除数组的指定元素
39 0
|
算法
LeetCode 34. 在排序数组中查找元素的第一个和最后一个位置
LeetCode 34. 在排序数组中查找元素的第一个和最后一个位置
113 0
LeetCode 34. 在排序数组中查找元素的第一个和最后一个位置