function toast(mess){
	var str='<div class="mess"><span></span></div>';
	$("body").append(str);
	$(".mess").fadeIn().find("span").html(mess);
	setTimeout(function(){
		$(".mess").fadeOut();
	},2000)
}
toast("验证码不能为空");

  

相关文章:

  • 2021-09-07
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-05-25
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2021-06-11
  • 2022-12-23
  • 2021-12-03
  • 2022-12-23
  • 2021-11-28
  • 2022-12-23
  • 2021-08-08
相关资源
相似解决方案