我有一个jquery滑块我想要定义步骤(增量)。目前,它一直上升1,我想将其更改为100或1000。
到目前为止,这是我的代码:
$('body').on('click', '#modern-filter-listing .stm-clear-listing-one-unit', function(){
var selectToClear = $(this).data('select');
if(typeof selectToClear != 'undefined') {
if (selectToClear != 'price' && $('select[name=' + selectToClear + ']').length > 0) {
$('select[name=' + selectToClear + ']').val('').change();
} else {
var $priceRange = $('#stm-price-range');
if ($priceRange.length > 0) {
$priceRange.slider('values', [stmOptions.min, stmOptions.max]);
$("#stm_filter_min_price").val(stmOptions.min);
$("#stm_filter_max_price").val(stmOptions.max);
}
}
}
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
这是我执行滑块的php html:
任何帮助都会很棒。