當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


jQuery UI Selectable tolerance用法及代碼示例


jQuery UI 由 GUI 小部件、視覺效果和使用 jQuery JavaScript 庫實現的主題組成。 jQuery UI 非常適合為網頁構建 UI 接口。它可用於構建高度交互的 Web 應用程序,或者可用於輕鬆添加小部件。

jQuery 用戶接口可選寬容選項用於確定使用哪種模式來測試套索是否應選擇一個項目。套索可以引用通過拖動框來選擇的元素。它是字符串類型,默認值為“touch”。

以下是可能的值:

  • fit:指定套索何時與項目完全重疊。
  • touch:它指定套索何時與項目重疊任何特定的量。

用法:

使用公差選項初始化可選元素:

$( "Selector" ).selectable({ tolerance: "fit" });
  • 獲取默認選項:
    var tolerance = $( "Selector" ).selectable( "option", "tolerance" );
  • 設置默認選項:
    $( "Selector" ).selectable( "option", "tolerance", "fit" );

CDN 鏈接:以下是您的項目所需的一些 jQuery Mobile 腳本,因此請將它們添加到您的項目中。

<link rel=”stylesheet” href=”https://code.jquery.com/ui/1.12.1/themes/smoothness/jquery-ui.css”>
<script src=”https://code.jquery.com/jquery-1.12.4.js”></script>
<script src=”https://code.jquery.com/ui/1.12.1/jquery-ui.js”></script>

例子:此示例說明了 jQuery Mobile Selectable 的使用寬容選項.

HTML


<!doctype html> 
<html lang="en"> 
  
<head> 
    <link rel="stylesheet" href= 
"https://code.jquery.com/ui/1.12.1/themes/smoothness/jquery-ui.css"> 
    <script src= 
"https://code.jquery.com/jquery-1.12.4.js"> 
    </script> 
    <script src= 
"https://code.jquery.com/ui/1.12.1/jquery-ui.js"> 
    </script> 
    <style> 
        h1 { 
            color: green; 
        } 
          
        #list .ui-selecting { 
            background: greenyellow; 
        } 
          
        #list .ui-selected { 
            color: white; 
            background: green; 
        } 
    </style> 
    <script> 
        $(document).ready(function() { 
            $("#Button").on('click', function() { 
                var tolerance = $("#list").selectable( 
                   "option", "tolerance"); 
                $("#gfg").html(tolerance); 
            }); 
        }); 
    </script> 
</head> 
  
<body> 
    <center> 
        <h1>GeeksforGeeks</h1> 
        <h3>jQuery UI Selectable tolerance Option</h3> 
        <ul id="list" style="list-style: none"> 
            <li>Data Structure</li> 
            <li>Algorithm</li> 
            <li>C++</li> 
            <li>Java</li> 
            <li>HTML</li> 
            <li>Bootstrap</li> 
            <li>PHP</li> 
        </ul> 
        <input type="button" 
               id="Button" 
               value="Value of the tolerance option"> 
        <h4> 
            <span id="gfg"></span> 
        </h4>  
    </center> 
    <script> 
        $(document).ready(function() { 
            $("#list").selectable(); 
        }); 
    </script> 
</body> 
  
</html>

輸出:

jQuery UI Selectable tolerance Option

參考:https://api.jqueryui.com/selectable/#option-tolerance



相關用法


注:本文由純淨天空篩選整理自SHUBHAMSINGH10大神的英文原創作品 jQuery UI Selectable tolerance Option。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。