似乎没有令人满意的JS代码。
尝试了以下方法。它会弹出一个框并要求获得许可。有人可以建议修改以下代码,以便不执行打印吗?
<script>
if($(".print-mode").is(":hidden")) {
alert("normal mode");
} else {
alert("print mode");
}
</script>
也尝试过:
<style>
.print-mode { display: none;}
@media print {
.print-mode { display: block;}
}
</style>
它不起作用。
答案 0 :(得分:0)
您无法使用浏览器操作进行控制
可能的解决方案是
<style type="text/css">
@media print{
body {display:none;}
}
</style>
没有其他停止机制
答案 1 :(得分:0)
请按照以下方式编写代码:
<script>
$( document ).ready(function() {
if($(".print-mode").is(":hidden")) {
$(this).attr("disabled","disabled");
}
else {
$(this).removeAttr("disabled");
}
});
</script>