jQuery UI Draggable refreshPositions选项

jQuery UI Draggable refreshPositions选项

jQuery UI是一种基于网络的技术,由使用jQueryJavaScript库实现的GUI部件、视觉效果和主题组成。jQuery UI是为网页建立UI界面的最佳工具。它也可以用来建立高度互动的网络应用程序,或者可以用来轻松地添加小工具。

在这篇文章中,我们将学习如何使用jQuery UI Draggable refreshPositions选项。这个选项是用来在每次移动鼠标时计算所有可拖动的位置。这个选项的默认值是false。

语法:

refreshPositions选项需要一个布尔值,语法如下。

$( ".selector" ).draggable({ refreshPositions: true });
  • 获取刷新位置选项
var refreshPositions = $( ".selector" )
.draggable( "option", "refreshPositions" );
  • 设置 refreshPositions 选项
$( ".selector" ).draggable( "option", "refreshPositions", true );

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 refreshPositions选项的用途。

<!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 refreshPositions = (".dragg")
                    .draggable( "option", "refreshPositions" );
  
                document.getElementById('gfg').innerHTML +=
                    "RefreshPositions Value : " + refreshPositions;
            });
        });
          
        (function () {
            (".dragg").draggable();
            (".dragg").draggable({
              refreshPositions: true
            });
              
            (".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 refreshPositions 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 refreshPositions">
        <h3><span id="gfg"></span></h3>
    </center>
</body>
</html>

输出:

jQuery UI Draggable refreshPositions选项

jQuery UI Draggable refreshPositions选项

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程