IE11浏览器不支持html2canvas
发布网友
发布时间:2022-04-20 17:10
我来回答
共1个回答
热心网友
时间:2022-04-19 09:59
方法一:
<script>
function checkhHtml5() {
if (typeof(Worker) !== "undefined") { alert("支持HTML5"); } else { alert("不支持HTML5"); } }
</script>。
方法二:
<canvas id="Canvas"></canvas>
<script>
if (!document.getElementById("Canvas").getContext){
alert("不支持html5");
}else{
alert("支持html5");
}
</script>。追问嗯。谢谢你的回答,可能我没有说清楚。我要的是有什么方法能让ie11从不支持html2canvas到支持html2canvas最终实现截图并下载的效果,我再火狐上是可以下载的