当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。