你好,我是javascript新手,我在代码中使用es6。
基本上,我在IE中遇到addEventListener的问题,这个想法是,当我们单击图像时,弹出窗口出现,它在chrome上运行,但是在IE中不起作用。我知道已经有与此相关的主题,例如:addEventListener in Internet Explorer
我尝试实现此功能,但是它似乎没有用,我想我需要更多地了解如何实现与我的代码相关的功能,如果有人可以提供帮助,我将非常感谢。
const toggleButton = document.querySelector('.jsModalToggle');
const container = document.querySelector('.modal-yt-container');
toggleButton.addEventListener('click', _ => {
document.body.classList.add('modal-yt-is-open')
})
container.addEventListener('click', e => {
if (!e.target.closest('.modal-yt-video')) {
document.body.classList.remove('modal-yt-is-open')
}
})
.installation-video-callout-text-container {
padding: 20px;
}
.installation-video-callout-text p{
font-size: 1em;
line-height: 16px;
}
.installation-video-callout-text .green_btn{
margin: 20px 0 0px 0;
}
.installation-video-callout-text h2{
line-height: 45px;
font-size: 32px;
}
.installation-video-callout-img iframe{
height: 300px;
}
.modal-yt-container {
position: fixed;
display: flex;
justify-content: center;
align-items: center;
top: 0;
right: 0;
bottom: 0;
left: 0;
opacity: 0;
z-index: -1;
background-color: rgba(0, 0, 0, 0.78);
}
.modal-yt-is-open .modal-yt-container {
z-index: 9999;
opacity: 1;
}
.modal-yt-video{
display: flex;
justify-content: center;
align-items: center;
width: 45%;
}
<img class="jsModalToggle installation-video-callout-img" src="image" style="cursor:pointer">image click</img>
<div class="modal-yt-container installation-video-callout-img">
<div class="modal-yt-video">
<iframe type="text/html"
width="100%"
height="500px"
src="https://www.youtube.com/embed/TA6blZJ6nVw"
frameborder="0">
</iframe>
</div>
</div>
答案 0 :(得分:1)
没有版本的Internet Explorer支持箭头功能。除const
和let
之外的所有 ES6 Javascript功能也是如此。
因此,这在任何 IE中均不起作用:
toggleButton.addEventListener('click', _ => {
document.body.classList.add('modal-yt-is-open')
})
container.addEventListener('click', e => {
if (!e.target.closest('.modal-yt-video')) {
document.body.classList.remove('modal-yt-is-open')
}
})
相反,请使用ES5函数:
toggleButton.addEventListener('click', function(_) {
document.body.classList.add('modal-yt-is-open')
})
container.addEventListener('click', function(e) {
if (!e.target.closest('.modal-yt-video')) {
document.body.classList.remove('modal-yt-is-open')
}
})
下一个问题是Internet Explorer的任何版本都不支持HTMLElement.prototype.closest()
。如果要使用它,则需要对其进行填充:
if (!Element.prototype.matches) {
Element.prototype.matches = Element.prototype.msMatchesSelector ||
Element.prototype.webkitMatchesSelector;
}
if (!Element.prototype.closest) {
Element.prototype.closest = function(s) {
var el = this;
do {
if (Element.prototype.matches.call(el, s)) return el;
el = el.parentElement || el.parentNode;
} while (el !== null && el.nodeType === 1);
return null;
};
}
答案 1 :(得分:0)
它询问您事件,元素,功能这三件事
var event = "click"
var element = document.querySelector('.jsModalToggle');
var myFunc = function(e){
if (!e.target.closest('.modal-yt-video')) {
document.body.classList.remove('modal-yt-is-open')
}
}
然后将所有内容传递给函数
addEvent(event, element, myFunc);