当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


HTML DOM Dialog用法及代码示例


DOM对话框对象用于表示HTML <dialog>元素。对话框元素由getElementById()访问。在HTML5中使用。

用法:

document.getElementById("ID");

其中“id”是分配给“Dialog”标签的ID。

示例1:

<!DOCTYPE html> 
<html> 
  
<head> 
    <title>DOM dialog Object</title> 
    <style> 
        dialog { 
            color:green; 
            font-size:30px; 
            font-weight:bold; 
            font-style:italic; 
        } 
          
        body { 
            text-align:center; 
        } 
    </style> 
</head> 
  
<body> 
    <h1>DOM Dialog Object</h1> 
  
    <!-- Assigning id to dialog tag -->
    <dialog id="GFG">Welcome to GeeksforGeeks</dialog> 
  
    <button onclick="myGeeks()" open>Submit</button> 
    <script> 
        function myGeeks() { 
            // Accessing dialog tag 
            var x = document.getElementById("GFG"); 
  
            x.open = true; 
        } 
    </script> 
</body> 
  
</html>

输出:



在单击按钮之前:

单击按钮后:

示例-2:可以使用document.createElement方法创建对话框对象。

<!DOCTYPE html> 
<html> 
  
<head> 
    <title>DOM dialog Object</title> 
    <style> 
        dialog { 
            color:green; 
            font-size:30px; 
            font-weight:bold; 
            font-style:italic; 
        } 
          
        body { 
            text-align:center; 
        } 
    </style> 
</head> 
  
<body> 
    <h1>DOM Dialog Object</h1> 
  
    <button onclick="myGeeks()" open>Submit</button> 
    <script> 
        function myGeeks() { 
            var gfg =  
            document.createElement("DIALOG"); 
            
            var f =  
            document.createTextNode("Welcome to GeeksForGeeks"); 
            
            gfg.setAttribute("open", "open"); 
            gfg.appendChild(f); 
            document.body.appendChild(gfg); 
        } 
    </script> 
</body> 
  
</html>

输出:

在单击按钮之前:

单击按钮后:

支持的浏览器:下面列出了DOM对话框对象支持的浏览器:

  • 谷歌浏览器37+
  • Opera 24+
  • Safari 6+

相关用法


注:本文由纯净天空筛选整理自ManasChhabra2大神的英文原创作品 HTML | DOM Dialog Object。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。