0
点赞
收藏
分享

微信扫一扫

alert 延迟自动关闭

乌龙茶3297 2023-05-23 阅读 22

function alert(str) {
	$(".alert span").html(str);
	$(".alert").fadeIn(function () {
		setTimeout(function () {
			$(".alert").fadeOut();
		}, 2500)
	})
}


举报

相关推荐

0 条评论