JavaScript singleton mode to implement custom pop-up box

JavaScript singleton mode to implement custom pop-up box

This article shares the specific code of JavaScript singleton mode to implement custom pop-up boxes for your reference. The specific content is as follows

Function

  • Customize pop-up title
  • Customize pop-up content
  • Customize the callback function for confirming and closing the pop-up window

Complete code

const Dialog = (function () {
 class Dialog {
   constructor () {
     this.ele = document.createElement('div')
     this.ele.className = 'dialog'
     document.body.appendChild(this.ele)
     this.callback = null
     this.setEvent()
   }
 
   setContent ({ text, topicText, confirmText, cancelText } = options) {
     this.ele.innerHTML = null
     const top = document.createElement('div')
     top.className = 'top'
     const topic = document.createElement('span')
     topic.className = 'topic'
     topic.innerHTML = topicText
     const close = document.createElement('span')
     close.className = 'close'
     close.innerHTML = '×'
     top.appendChild(topic)
     top.appendChild(close)
     const middle = document.createElement('div')
     middle.className = 'middle'
     const content = document.createElement('div')
     content.className = 'content'
     content.innerHTML = text
     middle.appendChild(content)
     const bottom = document.createElement('div')
     bottom.className = 'bottom'
     const confirm = document.createElement('button')
     confirm.className = 'confirm'
     confirm.innerHTML = confirmText
     const cancel = document.createElement('button')
     cancel.className = 'cancel'
     cancel.innerHTML = cancelText
     bottom.appendChild(confirm)
     bottom.appendChild(cancel)
     const wrap = document.createElement('div')
     this.ele.appendChild(top)
     this.ele.appendChild(middle)
     this.ele.appendChild(bottom)
     this.ele.style.display = 'block'
   }
 
   setEvent () {
     this.ele.addEventListener('click', e => {
       e = e || window.event
       const target = e.target || e.srcElement
       if (target.className === 'close') {
         this.ele.style.display = 'none'
         console.log('close')
       }
       if (target.className === 'confirm') {
         this.ele.style.display = 'none'
         this.callback(true)
       }
       if (target.className === 'cancel') {
         this.ele.style.display = 'none'
         this.callback(false)
       }
     })
   }
 }
 let instance = null
 return function (options, cb) {
   if (!instance) instance = new Dialog()
   instance.setContent(options)
   instance.callback = cb || function () {}
   return instance
 }
 })()
 
 const dialog = new Dialog({
 text: 'prompt text',
 topicText: 'Title',
 confirmText: 'Confirm',
 cancelText: 'Cancel'
 }, res => { console.log(res) })

Rendering

The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM.

You may also be interested in:
  • js+html5 realizes the effect of semi-transparent mask layer pop-up box
  • Toast usage in vue.js and example code using toast pop-up box
  • Encapsulation of js custom pop-up box plug-in
  • Easily implement js pop-up box display options
  • Vue.js implements pop-up window only once
  • js to achieve the effect of up, down, left, and right pop-up boxes
  • Implement the delivery address pop-up box selection based on layer.js and return the corresponding address information
  • JavaScript to achieve a pop-up box that cannot be closed
  • Example code of Bootstrap and Angularjs with homemade pop-up box
  • js rewrites the alert event (avoiding the URL appearing in the alert pop-up box title)

<<:  Sharing experience on MySQL slave maintenance

>>:  Proxy_pass method in multiple if in nginx location

Recommend

Solve the problem that Navicat cannot connect to MySQL on the Linux server

At the beginning, I felt sad. The screenshots are...

Solution to the problem of z-index not taking effect in CSS3

I recently wrote a combination of CSS3 and js, an...

Summary of Linux date command knowledge points

Usage: date [options]... [+format] or: date [-u|-...

Define your own ajax function using JavaScript

Since the network requests initiated by native js...

mysql 5.7.23 winx64 decompression version installation tutorial

Detailed installation tutorial of mysql-5.7.23-wi...

MySQL 5.7.21 winx64 installation and configuration method graphic tutorial

This article summarizes the notes for installing ...

Detailed explanation of MySQL from getting started to giving up - installation

What you will learn 1. Software installation and ...

Several commonly used single-page application website sharing

CSS3Please Take a look at this website yourself, ...

jQuery achieves seamless scrolling of tables

This article example shares the specific code of ...

How to set the page you are viewing to not allow Baidu to save its snapshot

Today, when I searched for a page on Baidu, becaus...

How to deploy Vue project using Docker image + nginx

1. Packaging Vue project Enter the following name...

Tutorial on configuring and using i3 window manager in Linux

In this article, I will show you how to install a...

Detailed explanation of CSS text decoration text-decoration &amp; text-emphasis

In CSS, text is one of the most common things we ...