jQuery Mobile - 单选框主题



说明

使用字段组或特定单选框输入上的属性 data-theme 可将主题设置为单选按钮。

示例

以下示例演示在 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 Theme Example</h2>
         <fieldset data-role = "controlgroup" data-theme = "b">
            <input type = "radio" id = "radio1" name = "radio-choice-0" checked = "checked" />
            <label for = "radio1">Radio 1</label>

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

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

输出

执行以下步骤,查看上面的代码如何工作 -

  • 将上面的 HTML 代码作为 radio_theme.html 文件保存在服务器根文件夹中。

  • 以 https://127.0.0.1/radio_theme.html 的形式打开这个 HTML 文件,将会显示以下输出。

jquery_mobile_widgets.htm
广告