Englisch ['daɪəlɒg]
n Konversation, Dialog; Frage und Antwort, Dialogkörper; Ausdruck mit Dialog
Dialoge
HTML-Dialog-Tag Syntax
Funktion: Dialogfeld oder Fenster definieren.
Hinweis: Das <dialog>-Tag ist ein neues Tag in HTML 5.
Hinweis: Das <dialog>-Tag ist ein neues Tag in HTML 5. Derzeit unterstützen nur Chrome und Safari 6 das <dialog>-Tag.
HTML-Dialog-Tag Beispiel
<!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>
Instanz ausführen »
Klicken Sie auf die Schaltfläche „Instanz ausführen“, um die Online-Instanz anzuzeigen