我的编程空间,编程开发者的网络收藏夹
学习永远不晚

JavaScript封装弹框插件的方法

短信预约 -IT技能 免费直播动态提醒
省份

北京

  • 北京
  • 上海
  • 天津
  • 重庆
  • 河北
  • 山东
  • 辽宁
  • 黑龙江
  • 吉林
  • 甘肃
  • 青海
  • 河南
  • 江苏
  • 湖北
  • 湖南
  • 江西
  • 浙江
  • 广东
  • 云南
  • 福建
  • 海南
  • 山西
  • 四川
  • 陕西
  • 贵州
  • 安徽
  • 广西
  • 内蒙
  • 西藏
  • 新疆
  • 宁夏
  • 兵团
手机号立即预约

请填写图片验证码后获取短信验证码

看不清楚,换张图片

免费获取短信验证码

JavaScript封装弹框插件的方法

JavaScript封装弹框插件的具体代码,供大家参考,具体内容如下

知识点1、document.querySelector() 方法

querySelector() 方法返回文档中匹配指定 CSS 选择器的一个元素。
注意: querySelector() 方法仅仅返回匹配指定选择器的第一个元素。如果你需要返回所有的元素,请使用 querySelectorAll() 方法替代。
querySelectorAll() 方法返回文档中匹配指定 CSS 选择器的所有元素,返回 [NodeList] 对象。

知识点2、document.createElement() 用于创建一个元素

知识点3、innerHTML可获取或设置指定元素标签内的 html内容,从该元素标签的起始位置到终止位置的全部内容(包含html标签)。

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <meta http-equiv="X-UA-Compatible" content="ie=edge" />
    <title>Document</title>
    <link rel="stylesheet" href="../css/tanchuang.css" />
  </head>
  <body>
    <button>
      弹窗
    </button>
    <script>
      var control = document.querySelector("button");
      control.onclick = function() {
        var shade = document.createElement("div");
        shade.className = "shade";
        shade.innerHTML = `
            <div class="popwindows">
            <div class="tltle">
                <div class="text"><h3>温馨提示</h3></div>
                <div class="exit"></div>
            </div>
            <div class="content"><h4>是否添加一个页面生成一个蓝色div</h4></div>
            <div class="endbtn">
                <div class="btn confirm">确定</div>
                <div class="btn cancel">取消</div>
            </div>
            </div>
            `
          document.body.appendChild(shade);
          var cancel = document.querySelector(".btn.cancel");
          cancel.onclick = function() {
          document.body.removeChild(shade);
        }
          var confirmDiv = document.querySelector(".btn.confirm");
          confirmDiv.onclick = function() {
          var a = document.createElement("div")
          a.style.backgroundColor = "red";
          a.style.width = "100px";
          a.style.height = "100px";
          document.body.appendChild(a);
          document.body.removeChild(shade)
      }
    }
    </script>
  </body>
</html>

tanchuang.css

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.shade {
  display: flex;
  top: 0;
  left: 0;
  width: 100%;
  height: 600px;
  background-color: rgba(0, 0, 0, 0.5);
}
.shade .popwindows {
  width: 400px;
  height: 300px;
  background-color: #f2f2f2;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
}
.shade .popwindows .tltle {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
  flex: 1;
  border-bottom: 1px solid #bdb8b8;
}
.shade .popwindows .tltle .text {
  flex: 1;
  float: left;
  padding-left: 10px;
  font-family: "微软雅黑";
}
.shade .popwindows .tltle .exit {
  width: 30px;
  height: 30px;
  background-image: url("../js学习/imag/cuohao.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 20px auto;
  float: right;
  margin-right: 10px;
}
.shade .popwindows .content {
  width: 100%;
  flex: 3;
  line-height: 40px;
  font-size: 13px;
  margin-left: 10px;
  font-family: '宋体';
}
.shade .popwindows .endbtn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  flex: 1;
  border-top: 1px solid #bdb8b8;
}
.shade .popwindows .endbtn .btn{
    width: 80px;
    text-align: center;
    height: 30px;
    line-height: 30px;
    font-size: 15px;
    background-color: #979797;
}
.shade .popwindows .endbtn .btn:nth-child(1){
    margin-right: 10px;
}
.shade .popwindows .endbtn .btn:nth-child(2){
    margin-right: 10px;
}
.shade .popwindows .endbtn .btn:hover{
    background-color: #f68c4e;
}

封装

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <meta http-equiv="X-UA-Compatible" content="ie=edge" />
    <title>Document</title>
    <link rel="stylesheet" href="../css/tanchuang.css" />
    <script class="lazy" data-src="../js文件/popwindows.js"></script>
  </head>
  <body>
    <button>添加弹窗</button>
  </body>
  <script>
    var button = document.querySelector("button");
    button.onclick = function() {
      var args = {
        title: "严重警告",
        content: "您输入的内容不合法",
        confirmDivfn: function() {
          var a = document.createElement("div");
          a.style.backgroundColor = "red";
          a.style.width = "100px";
          a.style.height = "100px";
          document.body.appendChild(a);
        },
        cancelfn: function() {  
        }
      };
      Alert(args);
    };
  </script>
</html>

function Alert(args) {
    var shade = document.createElement("div");
    shade.className = "shade";
    shade.innerHTML =
      `
            <div class="popwindows">
            <div class="tltle">
                <div class="text"><h3>` +
      args.title +
      `</h3></div>
                <div class="exit"></div>
            </div>
            <div class="content"><h4>` +
      args.content +
      `</h4></div>
            <div class="endbtn">
                <div class="btn confirm">确定</div>
                <div class="btn cancel">取消</div>
            </div>
            </div>
            `;
    document.body.appendChild(shade);
    var cancel = document.querySelector(".btn.cancel");
    var confirmDiv = document.querySelector(".btn.confirm");
    confirmDiv.onclick = function() {
      
      args.confirmDivfn();
      document.body.removeChild(shade);
    };
    cancel.onclick = function() {
      
      args.cancelfn();
      document.body.removeChild(shade);
    };
  };

css不变

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持编程网。

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

JavaScript封装弹框插件的方法

下载Word文档到电脑,方便收藏和打印~

下载Word文档

猜你喜欢

vue.js基于ElementUI如何封装CRUD的弹框组件

本文小编为大家详细介绍“vue.js基于ElementUI如何封装CRUD的弹框组件”,内容详细,步骤清晰,细节处理妥当,希望这篇“vue.js基于ElementUI如何封装CRUD的弹框组件”文章能帮助大家解决疑惑,下面跟着小编的思路慢慢
2023-07-02

Jquery弹出层插件ThickBox的使用方法

要使用jQuery弹出层插件ThickBox,您需要按照以下步骤进行操作:1. 首先,下载并引入jQuery库和ThickBox插件的源文件。您可以在ThickBox的官方网站(http://jquery.com/和http://jquer
2023-08-17

javascript中有哪些对象封装的方法

这期内容当中小编将会给大家带来有关javascript中有哪些对象封装的方法,文章内容丰富且以专业的角度为大家分析和叙述,阅读完这篇文章希望大家可以有所收获。JavaScript是什么JS是JavaScript的简称,它是一种直译式的脚本语
2023-06-14

vue子组件封装弹框只能执行一次的mounted如何解决

这篇文章主要介绍“vue子组件封装弹框只能执行一次的mounted如何解决”的相关知识,小编通过实际案例向大家展示操作过程,操作方法简单快捷,实用性强,希望这篇“vue子组件封装弹框只能执行一次的mounted如何解决”文章能帮助大家解决问
2023-07-05

前端经常会用到的JavaScript方法封装

前端经常会用到的JavaScript方法封装都有哪些呢?我们一起来看一下吧!

编程热搜

目录