HTML5:dialog

JavaScript 练手小技巧:HTML5 的 dialog 标签制作对话框_dialog html-CSDN博客

html 复制代码
<dialog id="dialog">
<h2 align="center">修改</h2>
<input type="text" id="title1" placeholder="标题" value=""><p>
<input type="text" id="website1" placeholder="https://" value="https://"><p>
<center><button id="button_modify_confirm">确定</button> <button id="button_modify_cancel">取消</button></center>
</dialog>

Modal 模式可以按 ESC 关闭 dialog

javascript 复制代码
menu_modify.addEventListener('click', function(){
    menu.style.display = 'none';
    dialog.showModal();
});

点击 dialog 外部区域关闭窗口

javascript 复制代码
dialog.addEventListener("click", function(e){
    if (e.target.nodeName.toLowerCase() == "dialog") {
         this.close();
    }
});

按钮关闭窗口

javascript 复制代码
button_modify_cancel.addEventListener("click", function(e){
    dialog.close();    
});
相关推荐
ヤ鬧鬧o.11 小时前
IDE风格的布局界面
javascript·html5
qq_4061761412 小时前
什么是模块化
开发语言·前端·javascript·ajax·html5
HIT_Weston1 天前
85、【Ubuntu】【Hugo】搭建私人博客:文章目录(四)
linux·ubuntu·html5
谷哥的小弟1 天前
HTML5新手练习项目—新年祝福(附源码)
前端·源码·html5·项目
MoonPointer-Byte2 天前
[特殊字符]The Omniscient Tome | 全知之书
javascript·html5
行思理2 天前
css 样式新手教程
前端·css·html5
空白2 天前
自学HTML5+CSS3丨第三天丨详解SEO
前端·css3·html5
xun_li_2 天前
2024---2025年前端开发的就业现状及前景
css·html·css3·html5
打工人小夏2 天前
前端面试题
前端·css·前端框架·vue·html·es6·html5
旧梦吟3 天前
脚本网页 双子星棋
算法·flask·游戏引擎·css3·html5