我怎样才能改变消息框的标题"页面在http://..说:“
本文关键字:http quot 能改变 消息 标题 | 更新日期: 2023-09-27 17:52:37
我在asp.net中通过以下代码打开msgbox .
if (ds.Tables[0].Rows[0][12].ToString() == "0" )
Page.ClientScript.RegisterStartupScript(this.GetType(), "Window", "alert('This ID is not yet approved to create a case. ');", true);
else if(ds.Tables[0].Rows[0][12].ToString() == "2")
Page.ClientScript.RegisterStartupScript(this.GetType(), "Window", "alert('Your ID is rejected to create a case. ');", true);
else
Page.ClientScript.RegisterStartupScript(this.GetType(), "Window", "alert('Please enter a valid ID.');", true);
在mozilla浏览器上运行时消息框标题显示The page at http://.... says:
我想改变这个标题,并显示我的自定义标题从The page at http://.... says:
的一部分
有空位吗?
你不能更改这个标题。
警告框是由浏览器生成的,标题不是可以通过javascript控制的。
你能做的最好的是在javascript中创建你自己的警报框(例如使用jQuery UI)。
查看JavaScript警报标题标题或如何编辑JavaScript警报框标题。
使用自定义警告消息框,用于更改标题,否则您无法更改标题
更多详细信息请查看此链接
http://javascript.internet.com/miscellaneous/custom-alert-box.html你可以试试这个
MsgBox("Hi", MsgBoxStyle.MsgBoxSetForeground, Title)
将显示你的网页标题。例如,如果您的网页标题为"我的主页",那么按摩框的标题将是"我的主页"。