html2canvas 可以发送多个元素(document.body 除外)吗?说如果我不想只基于页面中的几个元素生成图像,并且有几个元素我不想渲染.. 我该如何编辑这段代码?
html2canvas( [ document.body] , {
onrendered: function( canvas ) {
img = canvas.toDataURL();
window.open(img);
}
顺便说一句,window.open 意味着我不想在不同的页面上显示图像,同时不干扰原始 html 数据。