📅  最后修改于: 2020-10-24 05:36:15             🧑  作者: Mango
窗口对象代表浏览器中的窗口。窗口对象由浏览器自动创建。
窗口是浏览器的对象,不是javascript的对象。 javascript对象是字符串,数组,日期等。
注意:如果html文档包含框架或iframe,则浏览器会为每个框架创建其他窗口对象。
窗口对象的重要方法如下:
Method | Description |
---|---|
alert() | displays the alert box containing message with ok button. |
confirm() | displays the confirm dialog box containing message with ok and cancel button. |
prompt() | displays a dialog box to get input from the user. |
open() | opens the new window. |
close() | closes the current window. |
setTimeout() | performs action after specified time like calling function, evaluating expressions etc. |
它显示警报对话框。它具有消息和确定按钮。
它显示确认对话框。它带有确定和取消按钮的消息。
它显示提示输入对话框。它具有消息和文本字段。
它将在新窗口中显示内容。
它在给定的毫秒后执行其任务。