各位大大好,小弟目前正在做一個列印html的功能,
目前因為是以開一個新的分頁在執行列印,
目前遇到的問題為css樣式的載入,
我將檔案放置在根目錄下的dict/css/xxx.css,
初判看起來是打開新的分頁後,該分頁的路徑不同於執行該程式的js擋
以下為代碼的部份,
const printWindow = window.open('', '_blank', '', false)
printWindow.document.write(
`
<html>
<head>
<meta name="charset" content="utf-8" />
<link href="/dist/vuetify.min.css" rel="stylesheet">
</head>
<body>
<h1>測試</h1>
</body>
</html>
`
)
想請問各位大大,
wondow.open分頁打開後,
感謝各位大大!!!
相對路徑我試不出來
絶對路徑如下
const printWindow = window.open('', '_blank', '', false)
printWindow.document.write( `
<html>
<head>
<meta name="charset" content="utf-8" />
<link href="https://ajax.googleapis.com/ajax/libs/jqueryui/1.11.3/themes/smoothness/jquery-ui.css" rel="stylesheet">
</head>
<body>
<div class="ui-widget-header">測試</div>
</body>
</html>
`
)