我正在编写一个小型 Web 应用程序,我决定不使用任何框架。我只会写香草javascript。
我遇到的问题是我希望能够使用不同的键盘键打开三种不同类型的模态窗口。例如,g将打开一种类型,d将打开另一种类型,然后再打开另一种类型m。
我试图实现g一个,它将包含一个标题和一个输入表单,d另一个,一个标题和两个按钮。到目前为止,这是我的代码:
var width = 720;
var height = 350;
var modal = document.createElement('div');
modal.className = "modal";
modal.style.width = width;
modal.style.height = height;
modal.style.position = 'absolute';
modal.style.top = (window.innerHeight - parseInt(modal.style.height)) / 2 +'px';
modal.style.left = (window.innerWidth - parseInt(modal.style.width)) / 2 +'px';
var ngroup = modal;
var title = document.createElement('span');
title.innerHTML = "TYPE GROUP NAME"
var input = document.createElement('input');
input.type = "text";
ngroup.appendChild(title);
ngroup.appendChild(input);
var del = modal;
var dtitle = document.createElement('span');
dtitle.innerHTML = "DO YO WANT TO DELETE SELECTED COLOR(S)"
var dinput = document.createElement('input');
dinput.type = "button";
dinput.value = "yes";
var dinput1 = document.createElement('input');
dinput1.type = "button";
dinput1.value = "no";
del.appendChild(dtitle);
del.appendChild(dinput);
del.appendChild(dinput1);
function openModal(type) {
var body = document.getElementsByTagName('body')[0];
body.appendChild(type);
}
function closeModal() {
document.body.removeChild(modal);
}
这是modal.js,它包含在主页中并由此调用:
document.addEventListener('keydown', function(event) {
if(event.keyCode == 71) {
openModal(del);
}
else if(event.keyCode == 39) {
closeModal();
}
});
当我点击 时g,它会打开一个包含每个元素的模式:两个标题、一个文本字段和两个按钮。为什么?我的 Javascript 有什么问题?我知道它仍然没有组织,但我想在开始之前让事情顺利进行。