jquery – 10秒后关闭Modal Box

前端之家收集整理的这篇文章主要介绍了jquery – 10秒后关闭Modal Box前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
10秒后我如何关闭 jquery模式框?

解决方法

使用 setTimeOut功能.
//make sure you have lower case "o"
setTimeout(function(){
    $(dialog).close();
},10000);

猜你在找的jQuery相关文章