0
我想弄清楚爲什麼我不能將字符串傳遞到包含另一個函數的函數中。當我警覺時,我得到undefined
。如何將字符串傳遞到jQuery中的嵌套函數
$.fn.downCount = function (current_time) {
function countdown(current_time) {
alert(current_time)
}
})
var current_time = "01:00";
downCount(current_time);
但這些代碼不會警告任何東西。無論如何,如果你想使用'downCount'中的'current_time',那麼''current_time'是'countdown'的參數。 – Li357