客户希望在不禁用自动播放的情况下播放视频,尽管我进行了更改,但我们在Edge和IE上遇到了问题。
我已更改代码以强制禁用自动播放功能,但这仅在Firefox和Chrome中可以正常使用
JQuery:
obj_adjustments.removeAutoplay = function() {
var $iframe = $("iframe");
$iframe.on("load", function () {
var $iframeContents = $iframe.contents();
$iframeContents.find("video").removeAttr("autoplay");
});
}
和HTML:
<iframe frameborder="0" height="720" scrolling="no"
src="Video.mp4"
width="1280" style="height: 832px;">
<html>
<head>
<meta name="viewport" content="width=device-width">
</head>
<body>
<video
controls="" name="media"><source src="Video.mp4"
type="video/mp4">
</video>
</body>
</html>
</iframe>
对于IE-强制禁用下载/强制播放视频
对于Edge-禁用自动播放