如何在 jqprint 中包含外部 css 文件?我的代码可能有什么问题,为什么我不能使用内联样式表隐藏一个简单的按钮,其媒体等于打印?这是我的示例代码。
<style type="text/css" media="print">
#hide
{
display:none;
}
</style>
<script type="text/javascript" src="js/jquery.jqprint-0.3.js"></script>
<script type="text/javascript">
$(function() {
$( "#printMe" ).click(function() {
$('#print').jqprint();
});
});
</script>
<div id="header">
<h1>This is the Header</h1>
</div>
<div id="print"><br />
<input type="button" id="hide" value="hidden"/>
<input type="button" id="printMe" value="Print Me"/>
</div>
当我只使用 javascript 的 window.print 时,它会隐藏 ID 为 hide 的按钮。可能是什么问题呢 ?