jQuery UI controlgroup disabled选项

jQuery UI controlgroup disabled选项

jQuery UI由GUI小部件、视觉效果和使用jQuery、CSS和HTML实现的主题组成,jQuery UI非常适用于构建网页的UI界面。一个控制组被用来分组各种输入部件,如复选框、按钮等。控制组有助于对表单的所有元素应用共同的属性。

jQuery UI controlgroup disabled选项是用来禁用控制组部件的,如果它的值被设置为真。

语法:

在初始化控制组时指定禁用选项:

$( ".selector" ).controlgroup({
  disabled: true
});

初始化后,获取或设置禁用选项:

// Getter
var disabled = ( ".selector" )
    .controlgroup( "option", "disabled" );

// Setter( ".selector" ).controlgroup( 
    "option", "disabled", true );

CDN链接:首先,添加你的项目需要的jQuery UI脚本。

<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 UI controlgroup disabled选项的用途。

<!DOCTYPE html>
<html lang="en">
  
<head>
    <meta charset="utf-8">
    <link rel="stylesheet" href=
"//code.jquery.com/ui/1.12.1/themes/base/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>
  
    <script>
        (document).ready(function () {
            ("#GFG").controlgroup();
            $("#GFG").controlgroup( "option", "disabled", true );
        });
    </script>
</head>
  
<body>
    <center>
        <h1 style="color:green">
            GeeksforGeeks
        </h1>
        <h3>jQuery UI Controlgroup disabled Option</h3>
  
        <div id="GFG">
            <label for="radio_1">Men</label>
            <input type="radio" name="type" id="radio_1">
            <label for="radio_2">Women</label>
            <input type="radio" name="type" id="radio_2">
            <select>
                <option>Cricket</option>
                <option>Hockey</option>
                <option>Tennis</option>
                <option>Football</option>
            </select>
            <label for="official">Official</label>
            <input type="checkbox" name="official" id="official">
        </div>
    </center>
</body>
  
</html>

输出:

jQuery UI controlgroup disabled选项

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程