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();    
});
相关推荐
海天鹰2 天前
屏幕颜色检测
javascript·html5
芳心粽伙饭3 天前
HTML第一章 注释与快捷键
前端·html5
大鹏说大话7 天前
HTML5 地理定位 Geolocation:获取用户位置的“红线”与最佳实践
前端·html·html5
冷咖啡离 我的笨笨7 天前
通过(Node Js||.Net)基于HTML5的WebSocket实现实时视频文字传输(上)
javascript·.net·html5
并不喜欢吃鱼9 天前
一.前端web开发:零基础吃透 HTML5 核心知识
前端·html·html5
2601_9657984714 天前
Arrow Unlocker HTML5 Game Review: Keep Web Arcade Players Coming Back
前端·html·html5
梅孔立15 天前
Luckysheet 内网部署完整指南:从资源下载到 Vue3 集成
html5
软件开发技术深度爱好者16 天前
HTML5实现数学函数画图器
前端·javascript·html5
软件开发技术深度爱好者19 天前
国际音标魔法实验室工具HTML5实现
前端·html5·英语学习
逝水无殇20 天前
HTML 属性(HTML Attributes)详解
开发语言·前端·html·html5