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

有帮助吗?

解决方案

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

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

window.showModalDialog(url,name,params)

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

window.open(url,name,params)

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

其他提示

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

JavaScript的:

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

你有dojo对话框小部件: http://www.dojotoolkit.org/ 你可以使用它作为一个消息框。

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top