0
我正在研究一個名爲「popup」的插件($(".messageBox").popup()
)。jQuery插件無法正常工作
這裏是我的代碼部分:
$(this).fadeIn(settings.fadeDuration);
console.log($(this).attr("class"));
console.log(settings.timeOut);
setTimeout(function(){
console.log($(this).attr("class"));
$(this).fadeOut(settings.fadeDuration);
}, settings.timeOut);
那是在popup.min.js
的代碼,現在下面是index.html
代碼:
$(function(){
$(".messageBox").popup();
});
我的彈出窗口,並正確淡入,但它不會在1000ms
之後淡出......我該怎麼辦?我打開了控制檯,但沒有顯示錯誤。
什麼是'setting.timeOut'寫入控制檯時? – War10ck