jquery 进度条 滑块

《jQuery滑动选取数值范围插件》

有时我们在页面上需要选择数值范围,如购物时选取价格区间,购买主机时自主选取CPU,内存大小配置等,使用直观的滑块条直接选取想要的数值大小即可,无需手动输入数值,操作简单又方便。

本文向大家介绍一款范围选择器插件jRange,它是基于jQuery的一款简单插件。本站之前有类似文章:jQuery+CSS使用滑块选取价格范围,其中不太好的地方是使用了jqueryui庞大的插件库,有兴趣的朋友可以看看。下面我们来看下插件jRange的使用。

首先载入jQuery库文件以及jRange相关的css文件:jquery.range.css和插件:jquery.range.js

<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <title></title>
    <script src="js/jquery-1.11.2.js"></script>
    <link href="js/jquery.range.css" rel="stylesheet" />
    <script src="js/jquery.range.js"></script>
</head>
<body>
    <input type="hidden" class="single-slider" value="23" /> 
</body>
</html>
<script type="text/javascript">
    $(".single-slider").jRange({
        from: 0,
        to: 100,
        step: 1,
        scale: [0, 25, 50, 75, 100],
        format: '%s',
        width: 300,
        showLabels: true,
        showScale: true
    });
</script>

jquery 进度条 滑块_第1张图片



你可能感兴趣的:(jquery 进度条 滑块)