我想要这个模态加载5秒的字母。如何设置jquery时间设置。
jQuery(window).load(function(){
jQuery('#myModal').modal('show');
});
答案 0 :(得分:3)
使用setTimeout为功能/操作添加延迟。
jQuery(window).load(function(){
setTimeout(function() {
jQuery('#myModal').modal('show');
}, 5000);
});