js之模态对话框

Posted 飞鸟_山东

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js之模态对话框相关的知识,希望对你有一定的参考价值。

目标效果:点击页面按钮,显示模态对话框,在模态对话框里点击取消关闭模式对话框。

效果如下

实现代码如下:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
</head>
<body>
 <table>
     <tr>
         <td>1</td>
         <td>2</td>
         <td>
             <input type="button" value="点击" onclick="show()">
         </td>
     </tr>
 </table>
<div id="two" class="c2 hide"></div>
<div id="three" class="c3 hide">
    用户名<input type="text">
    <br>
    密码<input type="password">
    <br>
    <input type="button" value="取消" onclick="Hide()">
</div>
<style>
    .hide{
        display: none;
    }
    .c3{
        height: 100px;
        width: 300px;
        background-color: white;
        position: fixed;
        top: 50%;
        left: 50%;
        margin-top: -150px;
        margin-left: -150px;
        z-index: 3;
    }
    .c2{
        background-color: rgba(0,0,0,0.3);
        position: fixed;
        top: 0px;
        bottom: 0px;
        left: 0px;
        right: 0px;
        z-index: 2;
    }
</style>
<script type="text/javascript">
    function show() {
        document.getElementById(\'two\').classList.remove(\'hide\');
        document.getElementById(\'three\').classList.remove(\'hide\');
    }
    function Hide() {
        document.getElementById(\'two\').classList.add(\'hide\');
        document.getElementById(\'three\').classList.add(\'hide\');
    }
</script>
</body>
</html>

 

以上是关于js之模态对话框的主要内容,如果未能解决你的问题,请参考以下文章

模态框 modal.js

js+css+html点击登录后弹出可拖拽的模态框

AngularJS进阶(三十一)AngularJS项目开发技巧之获取模态对话框中的组件ID

QT笔记之模态对话框及非模态对话框

Qt 之 模态非模态半模态窗口的介绍及 实现QDialog的exec()方法

MFC编程入门之十一(对话框:模态对话框及其弹出过程)