jQuery UI的Draggable scope选项
jQuery UI是一种基于网络的技术,由使用jQuery JavaScript库实现的GUI部件、视觉效果和主题组成。jQuery UI是为网页建立UI界面的最佳工具。它也可以用来建立高度互动的网络应用程序,或者可以用来轻松地添加小工具。
在这篇文章中,我们将学习如何使用jQuery UI的Draggable scope选项。这个选项是用来对可拖动和可下降的项目进行分组。一个与droppable范围值相同的dragable将被droppable所接受。这个选项的默认值是”default”。
语法:
scope选项需要一个字符串类型的值,语法如下。
$( ".selector" ).draggable({ scope: "tasks" });
- 获取scope选项
var scope = $( ".selector" ).draggable( "option", "scope" );
- 设置scope选项
$( ".selector" ).draggable( "option", "scope", "tasks" );
CDN链接:你的项目将需要以下jQuery Mobile脚本,所以我们需要将这些脚本添加到你的项目中。
<link href = “https://code.jquery.com/ui/1.10.4/themes/ui-lightness/jquery-ui.css” rel = “stylesheet”>
<script src = “https://code.jquery.com/jquery-1.10.2.js”></script>
<script src = “https://code.jquery.com/ui/1.10.4/jquery-ui.js”></script>
例子:这个例子描述了jQuery UI Draggable范围选项的用途。
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href=
"https://code.jquery.com/ui/1.10.4/themes/ui-lightness/jquery-ui.css">
<script src=
"https://code.jquery.com/jquery-1.10.2.js">
</script>
<script src=
"https://code.jquery.com/ui/1.10.4/jquery-ui.js">
</script>
<style>
.dragg {
width: 100px;
height: 50px;
border: 1px solid black;
background-color: blue;
}
.dropp2{
width: 250px;
height: 50px;
border: 1px solid black;
float: center;
background-color: green;
}
#btn
{
padding: 0.5;
font-size: 20px;
height: 40px;
width: 40%;
}
</style>
<script>
(function () {
("#btn").on('click', function () {
var scope = (".dragg").draggable( "option", "scope" );
document.getElementById('gfg').innerHTML +=
"Scope Value : " + scope;
});
});
(function () {
(".dragg").draggable();
(".dropp2").droppable({
drop: function (event, ui) {
$(this)
.find("p")
.html("Dropped!");
}
});
});
</script>
</head>
<body>
<center>
<h1 style="color:green;">GeeksforGeeks</h1>
<h3>jQuery UI Draggable handle Option</h3>
<div class="dragg">
<p>Drag</p>
</div>
<br>
<div class="dropp2">
<p>Drop here</p>
</div>
<br>
<input type="button" id="btn"
value="Get Scope">
<h3><span id="gfg"></span></h3>
</center>
</body>
</html>
输出:
jQuery UI的Draggable scope选项。