我正在尝试使用https://viewerjs.org/(我正在我的网站上)建立页面,以便用户键入要查看的文件的文件名,然后将该文件显示在页面上的iframe。
它几乎可以正常工作(对于“ almost”的某些值:),如下所示。这是相关的HTML代码段...
<table border="2" cellpadding="5" cellspacing="0">
<tr align="center"><td>
<!-- form name="filename" action="/ViewerJS/#../anyfile.pdf " -->
<!-- form name="filename" action="/ViewerJS/#../" -->
<form name="filename" action="/cgi-bin/anyprogram.cgi"
method="get" target="inlineframe">
<table border="0" cellpadding="0" cellspacing="1">
<tr align="left"><td align="center">
<b>Enter the filename you wish to view...</b> <br>
<textarea name="formdata" rows="1" cols="150"
> filename </textarea> <br>
</td></tr>
<tr align="center"><td>
<b><input type="submit"
value="...then Click to View File"></b>
<input type="button" onClick="cleartext()"
value="(or clear filename)">
</td></tr>
</table>
</form> </td></tr>
<tr align="center"><td>
<b> </b> <br>
<iframe name="inlineframe" align="middle" width="99%" height="1024">
<p>iframe's not supported if you see this.</p>
</iframe> </td></tr>
</table> <br>
靠近顶部的是