如何在 jQuery 中使用 jQuery.insertBefore() 方法?
insertBefore( selector ) 方法將所有匹配的元素插入到另一組指定的元素之前。以下是此方法使用的所有引數的說明 -
- selector − 將所選元素插入到的內容之前。
示例
你可以嘗試執行以下程式碼,瞭解如何在 jQuery 中使用 jQuery.insertBefore() 方法 -
<html>
<head>
<title>jQuery insertBefore() method</title>
<script src = "https://ajax.googleapis.com/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>
廣告
資料結構
組網
關係資料庫管理系統
作業系統
Java
iOS
HTML
CSS
Android
Python
C 程式設計
C++
C#
MongoDB
MySQL
Javascript
PHP