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


jQuery UI Checkboxradio widget()用法及代碼示例


jQuery UI 是一組構建在 jQuery JavaScript 庫之上的精選用戶接口交互、效果、小部件和主題。無論您是要構建高度交互的 Web 應用程序,還是隻需要向表單控件添加日期選擇器,jQuery UI 都是完美的選擇。

在本文中,我們將使用 jQueryUI Checkboxradio widget() 方法。此方法返回當前 jQueryUI 小部件元素的實例。該方法不接受任何參數。

用法:

$(".selector").checkboxradio("widget");

CDN鏈接:首先,在以下內容中添加 jQuery UI CDN 鏈接<head>您的項目所需的部分。

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

例子:在這個例子中,我們將說明如何使用Checkboxradiowidget()方法。

HTML


<!DOCTYPE html> 
<html> 
  
<head> 
    <link rel="stylesheet" href= 
"//code.jquery.com/ui/1.12.1/themes/smoothness/jquery-ui.css"> 
    <script src= 
"//code.jquery.com/jquery-1.12.4.js"></script> 
    <script src= 
"//code.jquery.com/ui/1.12.1/jquery-ui.js"> 
    </script> 
</head> 
  
<body> 
    <center> 
        <h1 style="color:green;"> 
            GeeksforGeeks 
        </h1> 
  
        <h3>jQuery UI Checkboxradio widget() Method</h3> 
  
        <label for="radio1">Button 1</label> 
        <input type="radio" name="radio" id="radio1" class='radio'> 
        <br> 
  
        <label for="radio2">Button 2</label> 
        <input type="radio" name="radio" id="radio2" class='radio'> 
        <br> 
  
        <label for="radio3">Button 3</label> 
        <input type="radio" name="radio" id="radio3" class='radio'> 
        <br><br> 
  
        <input type="button" id="btn" value="CheckboxRadio Widget" 
            style="padding:8px"> 
          
        <script> 
            $(document).ready(function () { 
                $(".radio").checkboxradio(); 
                $("#btn").on('click', function() { 
                    var gfg = $(".radio").checkboxradio("widget"); 
                    console.log(gfg); 
                }) 
            }); 
        </script> 
    </center> 
</body> 
</html>

輸出:

參考: https://api.jqueryui.com/checkboxradio/#method-widget



相關用法


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