我想要一个带两个处理程序的价格范围滑块并编辑最小值和最大值。当我在最小和最大输入字段中插入值时,价格滑块移动。请参阅https://www.daraz.pk/mens-t-shirts/
上的演示答案 0 :(得分:1)
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.css">
<script src="http://code.jquery.com/jquery-1.11.3.min.js"></script>
<script src="http://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>Range Slider</h1>
</div>
<div data-role="main" class="ui-content">
<form method="post" action="demoform.asp">
<div data-role="rangeslider">
<label for="price-min">Price:</label>
<input type="range" name="price-min" id="price-min" value="200" min="0" max="1000">
<label for="price-max">Price:</label>
<input type="range" name="price-max" id="price-max" value="800" min="0" max="1000">
</div>
<input type="submit" data-inline="true" value="Submit">
<p>The range slider can be useful for allowing users to select a specific price range when browsing products.</p>
</form>
</div>
</div>
试试这个演示。
此致