變量得到「驚動」的percent
就好了。但是,當我把它放在progressbar
函數中時,默認爲零。如果我對這個值進行了硬編碼,它將起作用,即value: 60
。我如何使它與我的percent
變量一起工作?謝謝。無法獲取變量到Jquery函數
function updateProgress(percent)
{
alert(percent);
$("#progressbar").progressbar({
value: percent
});
}
could'percent' be a'string'? – Kyle
嘗試'val = {value:percent};'然後像'$(「#progressbar」)那樣傳入progressbar(val);' – Dev
您需要確保'percent'不是'string'總是在你的函數中使用'parseFloat(percent)'來確保 –