gpt4 book ai didi

javascript - 如何修复 'One Closing Button Closes All Modals'

转载 作者:行者123 更新时间:2023-11-30 06:12:28 34 4
gpt4 key购买 nike

我正在尝试创建一个 vanilla JavaScript 模态,当从 HTML 文件(或 JS 文件)实例化它时,它具有由用户自定义的能力。但是,在处理关闭模式的 close() 函数时,不是一次关闭一个模式,而是使用它的关闭按钮,第一个模式的关闭按钮关闭页面的所有模式。我不确定我做错了什么......

我研究过其他类似的 vanilla JavaScript、可自定义的模式库,但它们中的大多数要么使用 jQuery,要么使用某些框架,要么包括很多我不熟悉的复杂功能(我还是个初学者)。我在 GitHub、CodePen、Google 和这里​​进行了研究;但我还没有找到满足我需要的解决方案。

由于代码比较长,建议大家直接去我的CodePen账号,那里有完整的代码。

https://codepen.io/jdriviere/pen/zYOyJvv?editors=0011

但这是我的 close() 函数:

Modal.prototype.close = function() {
let modal = document.getElementById(this.options.id);
let modalBody = modal.children[0];

// Delete elements from Modal Body
for (let i = 0; i < modalBody.children.length; i++) {
modalBody.removeChild(modalBody.children[i]);
} // End of LOOP

// Delete Modal Body from Modal
modal.removeChild(modalBody);

// Delete Modal from DOM
modal.style.display = 'none';
document.body.removeChild(modal);

return this;
};

我希望代码一次关闭一个模态,最好是具有正确 ID 的模态(应由用户分配或默认情况下具有“NoID”ID)。相反,如果我关闭后续模态,它会关闭它们;但是如果我关闭第一个,它会关闭所有的。另外,有没有办法在您创建模态实例后立即初始化()模态功能(我讨厌手动启动它们)?如果是这样,请在此处也包含您的解决方案(如果要求不多的话)。

现在已经有一段时间了。非常感谢您的帮助。

谢谢。 :)

最佳答案

您的代码中有几个错误:

  1. 始终为 HTML 元素使用正确的 ID 模式。您使用过n/a对于没有 id 的模式他们的属性(property) options目的。使用这样的 id将在您使用 jQuery 时破坏查询选择器。
  2. 因为您正在调用 init()函数两次,每次调用 init() closeBtn正在选择两个模式的关闭按钮,并将点击事件处理程序分配给每个模式两次。这就是当您单击一个按钮时另一个按钮的单击事件正在执行的原因。因此,您可以做的是,仅将点击功能与 init() 所在模式的关闭按钮相关联一次。函数被调用。我用了let closeBtn = document.querySelector('#'+this.options.id + ' .modal-close');init() 中选择那个特定的关闭按钮功能。

总体而言,您的 JS 代码如下所示:

/**
* Blueprint function (class) that describes a Modal object.
* @param {Object} options Object parameter containing elements that describe the Modal.
* @returns {Object} options Returns options from current modal object.
*/
function Modal(options) {
// If constructor params is available
if (options) {
this.options = options;
} else {
this.options = {};

} // End of IF-ELSE

// Add to options object
if (options.id) {
// Check type of ID entry
if (typeof options.id === 'number') {
this.options.id = options.id.toString();
} else {
this.options.id = options.id;
} // End of IF-ELSE
} else if (options.id === undefined) {
this.options.id = 'NA';
} // End of IF-ELSE
if (options.name) {
this.options.name = options.name;
} // End of IF
if (options.closable) {
this.options.closable = options.closable;
} // End of IF

return this;
};

// Prototypes
/**
* Displays some information concerning the current Modal object.
* @returns {Object} this Returns current modal object.
*/
Modal.prototype.open = function() {
let demo = document.getElementById('demo');

return this;
};

/**
* Creates an instance of a Modal object with the specified object elements.
* @returns {Object} this Returns current Modal object.
*/
Modal.prototype.create = function() {
// Create Modal Element
let modal = document.createElement('div');
let modalBody = document.createElement('div');

// Create Modal
!modal.classList.contains('modal') ?
modal.classList.add('modal') :
modal.classList.add('');
modal.id = this.options.id || 'noID';

// Create modal body element
!modalBody.classList.contains('modal-body') ?
modalBody.classList.add('modal-body') :
modalBody.classList.add('');document.querySelector('#' + this.options.id + ' .modal-close');
modal.appendChild(modalBody);

// Adding modal sub-elements
if (this.options.title) {
let modalTitle = document.createElement('h2');
!modalTitle.classList.contains('modal-title') ?
modalTitle.classList.add('modal-title') :
modalTitle.classList.add('');
modalTitle.textContent = this.options.title;
modalBody.appendChild(modalTitle);
console.log('Added title!');
} // End of IF

if (this.options.subtitle) {
let modalSubtitle = document.createElement('h4');
!modalSubtitle.classList.contains('modal-subtitle') ?
modalSubtitle.classList.add('modal-subtitle') :
modalSubtitle.classList.add('');
modalSubtitle.textContent = this.options.subtitle;
modalBody.appendChild(modalSubtitle);
console.log('Added subtitle!');
} // End of IF

if (this.options.content) {
let modalContent = document.createElement('p');
!modalContent.classList.contains('modal-content') ?
modalContent.classList.add('modal-content') :
modalContent.classList.add('');
modalContent.textContent = this.options.content;
modalBody.appendChild(modalContent);
console.log('Added contents!');
} // End of IF

if (this.options.closable) {
let modalClose = document.createElement('span');
!modalClose.classList.contains('modal-close') ?
modalClose.classList.add('modal-close') :
modalClose.classList.add('');
modalClose.innerHTML = '&times;';
modalBody.appendChild(modalClose);
console.log('Close button added!');
} // End of IF

document.body.appendChild(modal);
console.log('Modal created with ID', modal.id);

return this;
};

/**
* Closes the current Modal object.
* @returns {Object} this Returns current Modal object.
*/
Modal.prototype.close = function() {
let modal = document.getElementById(this.options.id);
let modalBody = modal.children[0];

// Delete elements from Modal Body
for (let i = 0; i < modalBody.children.length; i++) {
modalBody.removeChild(modalBody.children[i]);
} // End of LOOP

// Delete Modal Body from Modal
modal.removeChild(modalBody);

// Delete Modal from DOM
modal.style.display = 'none';
document.body.removeChild(modal);

return this;
};

/**
* Initializes the inner functions of the modal, such as the closing capacity.
* @returns {Object} this Returns current Modal object.
*/
Modal.prototype.init = function(e) {
// let closeBtnAll = document.querySelectorAll('.modal-close');
let closeBtn = document.querySelector('#'+this.options.id + ' .modal-close');

// Assign close() function to all close buttons
closeBtn.addEventListener('click', () => {
if (this.options.closable) {
this.close();
}
})

// Press ESC to close ALL modals

return this;
};

// Create a Modal object
let modal1 = new Modal({
id: 'post1',
name: 'modal',
title: 'First Post',
subtitle: 'I contain all the elements',
content: 'This is awesome!',
closable: true
});

let modal2 = new Modal({
title: 'Second Post',
subtitle: 'Trying new things',
content: 'Hehehehehe',
closable: true
});

modal1.open();
modal1.create();
modal1.init();

modal2.open();
modal2.create();
modal2.init();

只需在您的代码笔中替换上面的 JS 代码并尝试。它会起作用。

关于javascript - 如何修复 'One Closing Button Closes All Modals',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58057278/

34 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com