1. 程式人生 > >ajax中彈出提示框

ajax中彈出提示框

轉自:http://blog.csdn.net/ptyzhu/article/details/7893625

彈出提示框的幾種基本方式:

Response.Write("<script>alert('成功!');window.location.href='task.aspx';</script>");

Page.ClientScript.RegisterStartupScript(this.GetType(), "test", "<script>alert('成功!');</script>");

Page.RegisterStartupScript("test", "<script>alert('成功!');</script>");


在ajax中上述方式將失效,解決辦法如下:

ScriptManager.RegisterStartupScript(this,this.GetType(),"test","alert('成功!');",true);

ps:最後一個引數的bool值表示是否在前一個引數script中加<script></script>標籤,當為false時需要手動加該標籤