我无法弄清楚为什么我的优惠券图片在尝试打印时显示为空白,是否因为javascript onclick的弹出功能?好吧,我试图在javascript中定位它,但我没有运气。我正在使用的平台还有一个内联的onclick功能,你可以在这里看到:获取优惠券 http://thecameldevelopers.editor.multiscreensite.com/preview/fcaad832
$(function(){
console.log(' jquery is working');
function print(){
//find the div container with the image of coupon
var src = $('.popupData').find('img').attr('src');
//test the src if ok
console.log(src);
popup.document.write('<img src=\"'+ src + '\"'+ '/>');
var popup = window.open();
popup.focus();
popup.print();
}
});