我正在使用phonegap for ios。我需要从外部URL打开pdf文件作为弹出窗口。 在这里我使用InappBrowser插件工作正常,但它显示完整的窗口。 我需要像弹出窗口一样显示。
以下是使用InAppBrowser插件的代码:
<a href="#" onclick="window.open('http://www.us-cert.gov/sites/default/files/publications/CloudComputingHuthCebula.pdf', '_blank', 'location=no');">Show PDF</a>
答案 0 :(得分:2)
使用google doc viewer是最好的选择:
window.open("http://docs.google.com/viewer?url=<place your doc location address>", '_blank', 'location=yes');
就是这样。
答案 1 :(得分:0)
您还可以将FileOpener plugin用于Cordova。