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


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


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

在本文中,我們將使用 jQuery UI Checkboxradio enable() 方法。此方法啟用禁用的 Checkboxradio 按鈕。該方法不接受任何參數。

用法:

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

CDN 鏈接:首先,在項目所需的 head 部分中添加 jQuery UI CDN 鏈接。

<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>

例子:在這個例子中,我們將說明如何使用 jQuery複選框收音機 enable()方法。

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 enable() 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="Enable CheckboxRadio" 
               style="padding: 8px"> 
          
        <script> 
            $(document).ready(function () { 
                $(".radio").checkboxradio(); 
                $(".radio").checkboxradio("disable"); 
                $("#btn").on('click', function() { 
                    $(".radio").checkboxradio("enable"); 
                }) 
            }); 
        </script> 
    </center> 
</body> 
</html>

輸出:

參考: https://api.jqueryui.com/checkboxradio/



相關用法


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