我想点击栏目并打开一个新的空白页面,里面有图片。
pic1
是来自canvas的dataUrl。
当我尝试打印图像时,检查时出现的标记为<div><image src=pic1/></div>
。我想将dataUrl传递到内部而不是字符串pic1。反正呢?感谢
解决:
$('#column1').click(function (event){
var pic1 = document.getElementById('url1').value;
var win = window.open('', 'Title', 'toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=yes, resizable=yes, width=780, height=200, top='+(screen.height-400)+', left='+(screen.width-840));
win.document.body.innerHTML = '<div><img src= '+pic1+'></div>';
});