Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

window.alert

概述

显示一个警告对话框,上面显示有指定的文本内容以及一个"确定"按钮。

语法

window.alert(message);
  • message是要显示在对话框中的文本字符串,如果传入其他类型的值,会转换成字符串.

示例

window.alert("Hello world!");

显示如下(不同的浏览器下显示不同):

Image:AlertHelloWorld.png

附注

警告对话框使用在无需用户确认的情况下,否则应该使用其他类型的对话框,比如confirm, prompt.

The following text is shared between this article, DOM:window.prompt and DOM:window.confirm 这里显示的对话框是一个模态窗口,它能阻止用户对浏览器窗口界面的其他部位进行操作,你不应该过多的使用这种模态窗口.

扩展开发者有时候需要使用nsIPromptService接口来代替该alert方法.

从Firefox 4开始,在网页中弹出的对话框都换成了标签页范围内的模态窗口,即不会影响其他的标签页,同时还能阻止过多次数的弹窗.

规范

DOM Level 0 不属于任何标准.

相关链接

confirm, prompt

扩展开发者应该查看alert()alertCheck()

文档标签和贡献者

 此页面的贡献者: teoli, khalid32, ziyunfei
 最后编辑者: khalid32,