HTML DOM Dialog 对象
JavaScript基础 2022-05-13 16:17:25小码哥的IT人生shichen
HTML DOM Dialog 对象
Dialog 对象
Dialog 对象是 HTML5 中的新对象。
Dialog 对象表示 HTML <dialog> 元素。
注释:目前只有 Chrome Canary 和 Safari 6 支持 <dialog> 元素。
访问 Dialog 对象
您可以通过使用 getElementById() 来访问 <dialog> 元素:
var x = document.getElementById("myDialog");
完整实例:
<!DOCTYPE html>
<html>
<body>
<h3>演示如何访问 Dialog 元素</h3>
<p>点击按钮来打开对话窗口。</p>
<button onclick="myFunction()">试一下</button>
<p><b>注释:</b>目前只有 Chrome Canary 和 Safari 6 支持 <dialog> 元素。</p>
<dialog id="myDialog">This is an open dialog window</dialog>
<script>
function myFunction()
{
var x = document.getElementById("myDialog");
x.open = true;
}
</script>
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html
创建 Dialog 对象
您可以通过使用 document.createElement() 方法来创建 <dialog> 元素:
var x = document.createElement("DIALOG");
完整实例:
<!DOCTYPE html>
<html>
<body>
<h3>演示如何访问 Dialog 元素</h3>
<p>点击按钮来创建含有文本的 DIALOG 元素。</p>
<button onclick="myFunction()">试一下</button>
<p><b>注释:</b>目前只有 Chrome Canary 和 Safari 6 支持 <dialog> 元素。</p>
<script>
function myFunction()
{
var x = document.createElement("DIALOG");
var t = document.createTextNode("This is an open dialog window");
x.setAttribute("open", "open");
x.appendChild(t);
document.body.appendChild(x);
}
</script>
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html
Dialog 对象属性
属性 | 描述 |
---|---|
open | 设置或返回对话是否是打开的。 |
returnValue | 设置或返回对话的返回值。 |
Dialog 对象方法
方法 | 描述 |
---|---|
close() | 关闭对话。 |
show() | 显示对话。 |
showModal() | 显示对话,并使其成为 top-most 型对话。 |
相关页面
HTML 参考手册:HTML <dialog> 标签