提示信息

function AlertTips(msg,time){
  $("#alertmsg").html(msg);
  $("#msgbox").show();
  setTimeout("$('#msgbox').hide()", time);
}

你可能感兴趣的:(提示信息)