我尝试使用此代码打印产品页面:
<a href="#" onclick="javascript:window.print();"><span>Print</span></a>
但我得到空白页面。此外,尝试从我的浏览器通过Ctrl + P打印。 我有什么想法可以解决这个问题,或者甚至开始调试打印操作?
我正在使用magento 1.8
答案 0 :(得分:0)
这应该让你工作
<p>Click the button to print the current page.</p>
<a href="#" onclick="javascript:window.print();"><span>Print</span></a>
<script>
function myFunction() {
window.print();
}
</script>