UK['da??l?g] US['da???l?g]

n. Conversation, dialogue; question and answer, dialogue; question and answer, dialogue body; variant of "dialogue"

v. Dialogue ;Use dialogue to express

plural: dialogs

html dialog tag syntax

Function:Define a dialog box or window.

Description: <dialog> tag is a new tag in HTML 5.

Note: The <dialog> tag is a new tag in HTML 5. Currently only Chrome and Safari 6 support the <dialog> tag.

html dialog tag example

<!DOCTYPE html>
<html>
<body>

<p><b>注釋:</b>只有 Chrome 和 Safari 6 和支持 dialog 標(biāo)簽。</p>


<table border="1">
<tr>
<th>一月 <dialog open>這是打開的對話窗口</dialog></th>
<th>二月</th>
<th>三月</th>
</tr>
<tr>
<td>31</td>
<td>28</td>
<td>31</td>
</tr>
</table>

</body>
</html>

Run instance ?

Click the "Run instance" button to view the online instance