我正在制作一个基于Web的
Android应用程序,我试图在html部分添加一个文件过滤器.
<button id="btnOpenChrome" title="Open file" style="position:relative;overflow:hidden;"><img id="imgOpenChrome" src="images/OpenFile.png" alt="Open File">
<input type="file" id="file" accept="text/rtf,text/html,text/plain,application/pdf" style="position:absolute;top:0;bottom:0;left: 0;right:0;opacity: 0.001"> </button>
这就是我所拥有的,它应该只允许打开rtf,txt,html和pdf文件.然而它根本不起作用,它过滤所有文件,如果我只留下一个例如:
accept="text/rtf"
过滤器工作,只允许rtf文件,为什么逗号打破这行代码?我看到他们在其他应用程序中使用文件过滤器.
最佳答案 你会使用下一个代码:
<p>This button will open ONLY rft, html, plain text and pdf</p>
<button id="btnOpenChrome" title="Open file" style="position:relative;overflow:hidden;"><img id="imgOpenChrome" src="images/OpenFile.png" alt="Open File">
<input type="file" id="file" accept=".rtf,.html,.plain,.pdf" style="position:absolute;top:0;bottom:0;left: 0;right:0;opacity: 0.001">
</button>
</body>