html dialog tag
Translation results:
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 tagsyntax
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 tagexample
<!DOCTYPE html> <html> <body> <p><b>注释:</b>只有 Chrome 和 Safari 6 和支持 dialog 标签。</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