本文介绍了在新窗口中打开pdf文件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在尝试下面的代码
< input type =buttonvalue =查看CSAclass =BlackButtonid =btnViewSaveonclick =window.open(''。 ./../ images/Barcode1234.pdf'')/>
但它在新标签页中打开pdffile但是我想在新窗口中打开文件所以我的代码中的任何editnig请告诉我......
谢谢.. .....
i am trying below code
<input type="button" value="View CSA" class="BlackButton" id="btnViewSave" onclick="window.open(''../../images/Barcode1234.pdf'')" />
but it open pdffile in new tab but i want to open file in new window so any editnig in my code please tell me......
thank you.......
推荐答案
<a class="BlackButton" id="btnViewSave" href="~/images/Barcode1234.pdf" target="blank">View CSA</a>
这篇关于在新窗口中打开pdf文件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!