我得到了bootstrap以防止打印href链接,但btn类我很难用。我也想用输入按钮来做。 input[class]
。
<style>
@media print {
a[href]:after {
content: none !important;
}
a[class="btn"]:after {
display: none !important;
}
}
</style>
<p><input type="button" class="btn btn-warning btn-lg col-md-12" value="Print List" onClick="print();" /></p>