<button ID="btnopenChrome" title="Open file" ><img ID="imgOpenChrome" src="images/Openfile.png" alt="Open file"> <input type="file" ID="file" accept="text/rtf,text/HTML,text/plain,application/pdf" > </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" ><img ID="imgOpenChrome" src="images/Openfile.png" alt="Open file"> <input type="file" ID="file" accept=".rtf,.HTML,.plain,.pdf" > </button> </body>总结
以上是内存溢出为你收集整理的android – HTML文件输入验收问题全部内容,希望文章能够帮你解决android – HTML文件输入验收问题所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)