我尝试获取格式为1000000的“ js_price_max”,
但这不起作用
我试过放在.format(0,0)
之后。
谁能帮忙,
有清晰的功能代码。
jQuery(function() {
"use strict";
var js_price_min = parseInt(jQuery( ".ps_price_min" ).val());
var js_price_max = parseInt(jQuery( ".ps_price_max" ).val());
var js_price_big = parseInt(jQuery( ".ps_price_big" ).val());
jQuery( "#slider-range-price" ).slider({
range: true,
min: 0,
max: js_price_big,
values: [ js_price_min, js_price_max ],
slide: function( event, ui ) {
jQuery( ".ps_price .ps_price_min" ).val(ui.values[0]);
jQuery( ".ps_price .ps_price_max" ).val(ui.values[1]);
if ( (ui.values[0]==0) && (ui.values[1]==js_price_big) ) {
jQuery( ".ps_price_info_value" ).html( 'Zvolte rozpětí' );
} else {
jQuery( ".ps_price_info_value" ).html( ui.values[0] + " - " + ui.values[1] + " Kč" );
}
}
});
if ( (js_price_min==0) && (js_price_max==js_price_big) ) {
jQuery( ".ps_price_info_value" ).html( 'Zvolte rozpětí' );
} else {
jQuery( ".ps_price_info_value" ).html(js_price_min + " - " + js_price_max + " Kč" );
}
});
非常感谢您。