內部的全局變量我有我的劇本里的滑塊:如何創建jQuery的滑塊功能
var uniquePrice;
$("#slider-secondary").slider({
range: "min",
value: 0,
min: 0,
max: 50,
slide: function(event, ui) {
$("#amount-secondary").val(ui.value);
uniquePrice = ui.value * 1500;
}
});
console.log(uniquePrice);
,我需要進一步使用uniquePrice變種在代碼中,滑塊功能之外。它不起作用 - console.log(uniquePrice);說「未定義」。
我在做什麼錯?
P.S.當然,我在函數之前定義了全局變量,遺憾的是忘記包含在這裏。
你在哪裏做console.log()調用? –
在函數之後,將該行添加到問題中。 – webstyle