2015-04-28 69 views
2

你好,目前我有這個zurb-foundation代碼,它只顯示警報,可以通過單擊x鏈接關閉。自動關閉基礎警報

<div data-alert class="alert-box alert"> 
    <p> Sorry, your account is banned. Please go to the admin to fix the issue. </p> 
    <a href="#" class="close">&times;</a> 
</div> 

我想要做的不是點擊x鏈接,而是希望它自動關閉每x秒。那可能嗎?謝謝。

回答

3

所以我設法做我自己的伎倆。此作品

$('.alert-box').closest('[data-alert]').fadeOut(3500);