关于在页面跳转前alert()不能弹出消息的问题

按照正常的逻辑,先显示消息,再将页面跳转,实际上不新alert对话框不能显示

Response.Write("<script>alert('dsafasdf');</script>");
Response.Redirect("webform2.aspx");

通过修改有两种解决方法一种:利用脚步跳转

Response.Write("<script>alert('dsafasdf');</script>");

Response.Write("<script>window.location.href='webform2.aspx'</script>");

 

第二种:还是利用脚本跳转

 

Response.Write("<script>alert('dsafasdf');top.location.href='webform2.aspx'</script>");

你可能感兴趣的:(alert)