如何使用jQuery Mobile制作一个禁用的复选框

如何使用jQuery Mobile制作一个禁用的复选框

jQuery Mobile是一种基于网络的技术,用于制作可在所有智能手机、平板电脑和台式机上访问的响应式内容。在这篇文章中,我们将使用jQuery Mobile创建一个禁用的复选框。

方法:添加你的项目所需的jQuery Mobile脚本。

<link rel=”stylesheet” href=”http://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.css” />
<script src=”http://code.jquery.com/jquery-1.11.1.min.js”></script>
<script src=”http://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.js”></script>

例子:我们将使用jQuery Mobile创建一个禁用的复选框。我们使用input type=”checkbox “属性来创建这个复选框,并使用disabled=”disabled “属性来禁用这个复选框。

<!DOCTYPE html>
<html>
  
<head>
    <link rel="stylesheet" href=
"http://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.css" />
  
    <script src="http://code.jquery.com/jquery-1.11.1.min.js">
    </script>
  
    <script src=
"http://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.js">
    </script>
</head>
  
<body>
    <center>
        <h1>GeeksforGeeks</h1>
  
        <h4>
            Design a Disabled Checkbox
            using jQuery Mobile
        </h4>
  
        <form style="width: 50%;">
            <fieldset data-role="controlgroup" 
                data-iconpos="right">
  
                <input type="checkbox" disabled="" 
                    name="groupcheckbox1" 
                    id="groupcheckbox1" data-theme="b">
                <label for="groupcheckbox1">
                    Themed Disabled
                </label>
  
                <input type="checkbox" name="groupcheckbox2" 
                    id="groupcheckbox2" data-theme="b">
                <label for="groupcheckbox2">
                    Themed Not Disabled
                </label>
  
                <input type="checkbox" disabled="" 
                    name="groupcheckbox3" id="groupcheckbox3">
                <label for="groupcheckbox3">Disabled</label>
  
                <input type="checkbox" name="groupcheckbox4" 
                    id="groupcheckbox4">
                <label for="groupcheckbox4">Not Disabled</label>
            </fieldset>
        </form>
    </center>
</body>
  
</html>

输出:

如何使用jQuery Mobile制作一个禁用的复选框?

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程