是否可以在Web表单中获取Message Box?

时间:2008-10-14 23:25:29

标签: javascript user-interface dialog

我试过但我猜消息框只适用于win表单。在网络表单中使用的最佳替代方法是什么?

5 个答案:

答案 0 :(得分:6)

您可以使用confirm表示是/否问题,使用alert表示JavaScript中的“确定”消息。

另一种选择是使用JavaScript弹出一个看起来像消息框的新窗口。这种情况下的模态因浏览器而异。在Internet Explorer中,方法

window.showModalDialog(url,name,params)

将显示模态对话框。 Mozilla的方法仍然是使用

window.open(url,name,params)

但是将modal=yes添加到params列表。

答案 1 :(得分:2)

result = confirm('Yes or no question here.')

答案 2 :(得分:0)

JavaScript的:

alert("This box has an OK button.");

答案 3 :(得分:0)

Ajax ModalPopup也很好用。这是一个例子:

http://www.asp.net/ajax/ajaxcontroltoolkit/samples/modalpopup/modalpopup.aspx

答案 4 :(得分:0)

您有dojo对话框小部件:http://www.dojotoolkit.org/,您可以将其用作消息框。