3
我創建一個jQuery插件,與引導相互作用,並且我得到以下錯誤,當我請一個jQuery元件上的功能:未捕獲的類型錯誤:對象[對象窗口]沒有方法「各自」
Uncaught TypeError: Object [object Window] has no method 'each'
這是JavaScript的問題:
!function ($) {
$.fn.alertAutoClose = function (interval) {
setTimeout(function() {
return $(this).each(function() {
$(this).hide();
});
}, interval);
}(window.jQuery);
這是插件是如何觸發:
$(".alert").alertAutoClose(1000);
釷是在頁面上的HTML:
<div class="alert fade in">
<button type="button" class="close" data-dismiss="alert">×</button>
<strong>Warning!</strong> Best check yo self, you're not looking too good.
</div>
Thanks!That worked 。 – thesbros