目录

HTML DOM dialog 对象


对话框对象

Dialog 对象代表一个 HTML <dialog> 元素。

访问对话框对象

您可以使用 getElementById() 访问 <dialog> 元素:

示例

const element = document.getElementById("myDialog");
element.open = true;
亲自试一试 »

创建对话框对象

您可以使用 document.createElement() 方法创建 <dialog> 元素:

示例

const dialog = document.createElement("DIALOG");
亲自试一试 »

对话框对象属性

Property Description
open Sets or returns whether a dialog should be open or not
returnValue Sets or returns the dialog's return value

对话框对象方法

Method Description
close() Closes the dialog
show() Shows the dialog
showModal() Shows the dialog and makes it the top-most modal dialog

标准属性和事件

Dialog对象还支持标准特性事件


相关页面

HTML 参考:HTML <对话框> 标签