标签: jquery
这有效:
$(".printButton").click(function(v){ v.preventDefault() window.print(); });
这项工作(防止默认但不打印):
$(".printButton").click(function(v){ v.preventDefault() $("#content").print(); });
有什么建议问题是什么?
答案 0 :(得分:0)
print()仅在window对象上可用,它不是JQuery对象,请参考link和here