可在 Firefox 中使用,但无法在 Safari 或 Chrome 中使用。
function loadimage()
{
var canvas = document.getElementById("canvas");
if (window.XMLHttpRequest)
{// code for IE7+, Firefox, Chrome, Opera, Safari
xmlhttp=new XMLHttpRequest();
xmlhttp2=new XMLHttpRequest();
}
else
{// code for IE6, IE5
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
xmlhttp2=new ActiveXObject("Microsoft.XMLHTTP");
}
xmlhttp.onreadystatechange=function()
{
if (xmlhttp.readyState==4 && xmlhttp.status==200)
{
rasterizeHTML.drawHTML(xmlhttp.responseText, canvas);
var t=setTimeout(function(){copy()},3000)
}
}
xmlhttp.open("GET","/sm/<?=$sm[0];?>",true);
xmlhttp.send();
}
function copy()
{
var canvas = document.getElementById("canvas");
var img = canvas.toDataURL("image/png");
document.getElementById('dl').href = img;
document.getElementById('dl').innerHTML = "Download";
}
现在我没有写这个,所以我不太了解 JavaScript。但该脚本适用于 Firefox。在 Chrome 中,获取:未捕获的安全错误:试图突破用户代理的安全策略。为了toDataURL("image/png")