Dialog-Tag in HTML
- 24-07-2022
- Trung Minh
- 0 Comments
Das Dialog-Tag definiert ein Dialogfeld oder ein Fenster.
dialog-Element erleichtert das Erstellen von Popups oder Modals auf Webseiten.
Verwendung des dialog .-Tags
Beispiel : Dialog-Tag verwenden.
<!DOCTYPE html> <html> <head> <title>Học lập trình miễn phí tại web888.vn</title> <meta charset="utf-8"> </head> <body> <h1>Học lập trình miễn phí tại web888.vn</h1> <table> <tr> <th> January <dialog open>This is an open dialog window</dialog> </th> <th>February</th> <th>March</th> </tr> <tr> <td>31</td> <td>28</td> <td>31</td> </tr> </table> </body> </html>
Attribute des Dialogs .tag
open – gibt das zu aktivierende Dialogelement und den Benutzer an, mit dem interagiert werden soll.