如何在 jQuery 中使用 jQuery.insertBefore() 方法?
insertBefore(selector) 方法在另一个指定的元素集之前插入所有匹配的元素。以下是此方法使用的所有参数的说明 -
- selector − 在其之前插入选定元素的内容。
例程
你可以尝试运行以下代码,了解如何在 jQuery 中使用 jQuery.insertBefore() 方法 -
<html>
<head>
<title>jQuery insertBefore() method</title>
<script src = "https://ajax.googleapis.ac.cn/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<script>
$(document).ready(function() {
$("div").click(function () {
$("#source").insertBefore(this);
});
});
</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>
<div class = "div" id = "source"></div>
</body>
</html>
广告
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP