首页 > 语言 > JavaScript > 正文

jQuery中insertBefore()方法用法实例

2024-05-06 16:14:00
字体:
来源:转载
供稿:网友
这篇文章主要介绍了jQuery中insertBefore()方法用法,实例分析了insertBefore()方法的功能、定义及把匹配的元素插入到另一个指定的元素集合前面的使用技巧,需要的朋友可以参考下
 

本文实例讲述了jQuery中insertBefore()方法用法。分享给大家供大家参考。具体分析如下:

此方法把匹配的元素插入到另一个指定的元素集合的前面。
insertBefore()方法与insertAfter()相反。

语法结构:

复制代码代码如下:
$(selector).insertBefore(content)

参数列表:
参数 描述
selector 定义要被插入的内容。
content 定义在哪些元素之前插入内容。

 

实例代码:

 

复制代码代码如下:

<!DOCTYPE html> 
<html> 
<head> 
<meta charset=" utf-8"> 
<meta name="author" content="http://www.vevb.com/" /> 
<title>insertBefore()函数-武林网</title> 
<style type="text/css">  
p{  
  width:100px;  
  height:100px;  
  background-color:red;
}  
div{  
  width:200px;  
  height:200px;  
  background-color:blue;
}  
</style>  
<script type="text/javascript" src="mytest/jQuery/jquery-1.8.3.js"></script>  
<script type="text/javascript">  
$(document).ready(function(){  
  $("#bt").click(function(){  
    $("div").insertBefore("p");  
  })  
});  
</script>  
</head>  
<body>  
<p></p>  
<div></div>  
<input type="button" value="点击查看效果" id="bt" />
</body>  
</html>

 

以上代码可以将div元素插入到p元素的前面。
需要特别注意的是,这里的插入是将匹配元素挪动到指定元素的前面,而不是复制一个新的。

希望本文所述对大家的jQuery程序设计有所帮助。


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表

图片精选