最近打印網頁每連結跑URL都出來 不是header footer
謝謝
header
模擬:
網頁連結 (http://Outside.com/網頁連結1.html
網頁連結 2 (http://Outside.com/網頁連結2.html
網頁連結 3(http://Outside.com/網頁連結3.html 網頁連結 4(http://Outside.com/Demo4.html
網頁
網頁
網頁
網頁連結 5 (http://Outside.com/網頁連結4.html
網頁連結 6 (http://Outside.com/網頁連結5.html
網頁連結 7(http://Outside.com/網頁連結6.html
footer
原本網頁打印都會出現連結了啊。
除非你手動將其資訊給移除掉。
一般只要關掉「頁首頁尾」的列印就不會出現了。
要print的網頁試試加入這個:
<style>
@media print {
a[href]:after {
content: none !important;
}
}
</style>
參考網址:
https://stackoverflow.com/questions/7301989/need-to-remove-href-values-when-printing-in-chrome
本地端網頁測試OK