以下是一个简单的例子,展示如何在 jQuery Mobile 中创建一个基本的滑动条:
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.css">
<script src="https://code.jquery.com/jquery-1.11.1.min.js"></script>
<script src="https://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.js"></script>
</head>
<body>
<div data-role="page">
<div data-role="header">
<h1>滑动条示例</h1>
</div>
<div data-role="main" class="ui-content">
<label for="slider">选择一个值:</label>
<input type="range" name="slider" id="slider" value="50" min="0" max="100">
</div>
<div data-role="footer">
<h4>页脚文本</h4>
</div>
</div>
</body>
</html>
在这个例子中,<input type="range"> 元素被用作滑动条。data-role 属性用于指定元素的角色,例如,data-role="page" 表示这是一个页面,data-role="header" 和 data-role="footer" 分别表示页眉和页脚。
你可以根据自己的需求调整滑动条的属性,比如设置最小值、最大值、默认值等。
转载请注明出处:http://www.zyzy.cn/article/detail/14462/jQuery Mobile