在以下代码中。单击保存按钮后,它要求下载从Html2canvas生成的输出图像。如何查找此代码,以便要求下载它的instaed将使用“lightbox”功能动态生成图像。
我试过:
<html>
<head>
<meta charset="utf-8"/>
<title>test2</title>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.js"></script>
<script type="text/javascript" src ="http://code.jquery.com/jquery-1.9.0.min.js"></script>
<script type="text/javascript" src="html2canvas.js?rev032"></script>
<script type="text/javascript">
$(window).load(function() {
$('#load').click(function() {
html2canvas($('#testdiv'), {
onrendered: function (canvas) {
var img = canvas.toDataURL("image/png").replace("image/png", "image/octet-stream");
window.location.href = img;
}
});
});
});
</script>
</head>
<body>
<div id="testdiv">
<h1>Testing</h1>
<h4>One column:</h4>
<table border="1">
<tr>
<td>100</td>
</tr>
</table>
<br/>
</div>
<input type="button" value="Save" id="load"/>
</body>
</html>
答案 0 :(得分:0)
你可以尝试
$("#containerID").empty().append(canvas); // containerID is the container element for your rendered image
在您的页面上添加图片。并以同样的方式尝试将canvas或img(在您的情况下)作为您的灯箱代码的URL。
答案 1 :(得分:0)