实例代码“Ctrl+/”提示“F11/ESC”全屏 返回 格式化 恢复 运行
x
 
1
<!DOCTYPE html>
2
<html>
3
<body>
4
5
<p><b>Note:</b> The dialog tag is only supported in Chrome and Safari 6.</p>
6
7
8
<table border="1">
9
<tr>
10
<th>January <dialog open>This is an open dialog window</dialog></th>
11
<th>February</th>
12
<th>March</th>
13
</tr>
14
<tr>
15
<td>31</td>
16
<td>28</td>
17
<td>31</td>
18
</tr>
19
</table>
20
21
</body>
22
</html>
23