<button type="button" class="btn cms-btn-contorls">
<i class="fas fa-play" onclick="playBannerVideo(this);"></i>
@*<i class="fas fa-pause" style="display:none;"></i>*@
</button>
function playBannerVideo(e) {
console.log(e);
$(e).hide();
$(".cms-banner-text").hide();
var $vid = $("#cms-video");
$vid.attr("controls", true);
var vid = document.getElementById("cms-video");
vid.play();
}
请打开下面的链接并检查主页横幅视频在internet Explorer11中不工作,但它在铬和边缘正常工作。
https://smart-structures-dev.azurewebsites.net/
我的标签点击事件在internet explorer 11中不起作用,它在chrome和edge中工作得很好。有没有人能帮我解决这个问题,为什么internet Explorer11不能工作?
发布于 2020-02-21 14:39:24
尝试将<button>
标记更改为<div>
标记。代码为bleow
<div class="btn cms-btn-contorls">
<i class="fas fa-play" onclick="playBannerVideo(this);"></i>
</div>
https://stackoverflow.com/questions/60318695
复制相似问题