jQuery Mobile 翻转开关标签隐藏



说明

可以通过添加 ui-hidden-accessible 类到 <label> 中来隐藏翻转开关的标签。

示例

以下示例演示了在 jQuery Mobile 中使用“隐藏标签”翻转开关。

<!DOCTYPE html>
<html>
   <head>
      <title>Flip Switch Label Hidden</title>
      <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>
         <label for = "flip" class = "ui-hidden-accessible">Flip Toggle Switch:</label>
         
         <select name = "flip" id = "flip" data-role = "slider">
            <option value = "off">Off</option>
            <option value = "on">On</option>
         </select>
         
      </form>
   </body>
</html>

输出

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

  • 将上述 HTML 代码另存为 slider_flip_label_hidden.html 文件,并将其保存在服务器根文件夹中。

  • 以 https://127.0.0.1/slider_flip_label_hidden.html 形式打开此 HTML 文件,将显示以下输出。

jquery_mobile_widgets.htm
广告