更新时间:2021-01-21 23:14:04
自动第一次跳出 3000就是3秒
setTimeout('fireshow()', 3000);
function fireshow() {
$(".nb-dingwei").show();
}关闭后 6秒再次弹出
function closenb() {
$(".nb-dingwei").hide();
setTimeout(function() {
$(".nb-dingwei").show();
}, 6000)
}