-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
HTML5.2带来的新规则 #3
Comments
<!doctype html> <title>HTML5.2新功能测试</title>原生的 dialog 控制打开对话框对话框标题这是通过dialog实现的对话框 关闭对话框 <iframe allowpaymentrequest> </iframe>
<script> const dialog = document.getElementById("dialog"); document.getElementById("open").addEventListener("click", () => { dialog.show(); }); document.getElementById("close").addEventListener("click", () => { dialog.close(); }); </script> |
https://html.spec.whatwg.org/review-drafts/2020-01/ |
HTML的每个标签的变化,都会带来超文本语言的新语法和表达方式。
在2018,浏览器会继续更新,解析乃至影响HTML5.2语言的迭代更新。
The text was updated successfully, but these errors were encountered: