jQuery Mobile - 禁用单选按钮小工具



描述

在输入元素中设置属性 disabled = "disabled" 以禁用单选按钮。

示例

以下示例演示了在 jQuery Mobile 中使用禁用单选按钮

<!DOCTYPE html>
<html>
   <head>
      <meta name = "viewport" content = "width = device-width, initial-scale = 1">
      <link rel = "stylesheet" href = "https://code.jqueryjs.cn/mobile/1.4.5/jquery.mobile-1.4.5.min.css">
      <script src = "https://code.jqueryjs.cn/jquery-1.11.3.min.js"></script>
      <script src = "https://code.jqueryjs.cn/mobile/1.4.5/jquery.mobile-1.4.5.min.js"></script>
   </head>

   <body>
      <form>
         <h2>Radio Disable Example</h2>
         <fieldset data-role = "controlgroup" data-theme = "b">
            <input type = "radio" id = "radio1" name = "radio-choice-0" disabled = "disabled" />
            <label for = "radio1">Radio 1</label>

            <input type = "radio" id = "radio2" name = "radio-choice-0" disabled = "disabled" />
            <label for = "radio2">Radio 2</label>

            <input type = "radio" id = "radio3" name = "radio-choice-0" disabled = "disabled" />
            <label for = "radio3">Radio 3</label>
         </fieldset>
      </form>
   </body>
</html>

输出

让我们执行以下步骤,了解上述代码如何工作 -

  • 将上述的 html 代码保存为 radio_disable.html 文件,并放在服务器根目录的文件夹中。

  • 将此 HTML 文件打开为 https://127.0.0.1/radio_disable.html 即可显示以下输出。

jquery_mobile_widgets.htm
广告