-2
他們。如果我想在我的網站上添加一本PDF書籍,以便用戶能夠查看並打開並閱讀該書,我該怎麼辦?我正在使用Visual Studio Communities .C#在我的網站上放置pdf書
他們。如果我想在我的網站上添加一本PDF書籍,以便用戶能夠查看並打開並閱讀該書,我該怎麼辦?我正在使用Visual Studio Communities .C#在我的網站上放置pdf書
將pdf添加到您的網站並使用<a>
標記鏈接到它。
可以玩弄這個庫稱爲Js Pdf
否則就有黑客,這是非常簡單和容易,你可以使用的PDF書籍的動態URL和I幀
function showPDF()
{
viewFile('http://www.pdf995.com/samples/pdf.pdf') ;
}
function viewFile(fileurl) {
var url = 'https://docs.google.com/viewer?url='+fileurl+'&embedded=true' ;
var eframe = document.getElementById('frameviewfile');
eframe.src= url;
return false;
}
<button onClick="showPDF()">Show PDF File</button>
<iframe id="frameviewfile" height="800" width="1000" src="
https://docs.google.com/viewer?url=http://www.pdf995.com/samples/pdf.pdf&embedded=true"></iframe>
你的問題是什麼?但首先,確保你有權分發這本書。 –