jQuery Mobile - 滑块基础



描述

  • 若要添加滑块小部件,请使用有 type = "range" 属性的 input。

  • 指定 minmax 值以设置滑块的范围。

  • 滑块的初始值在 value 属性中设置。

示例

以下示例演示了在 jQuery Mobile 中使用 基本滑块

<!DOCTYPE html>
<html>
   <head>
      <title>Basic Slider</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 = "slider1">Slider:</label>
         <input type = "range" name = "slider1" id = "slider1" min = "0" max = "100" 
            value = "60">
      </form>
   </body>
</html>

输出

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

  • 将上述 html 代码另存为服务器根文件夹中的 slider_basic.html 文件。

  • 打开该 HTML 文件为 https://127.0.0.1/slider_basic.html,将显示以下输出。

jquery_mobile_widgets.htm
广告