为什么输入accept =“。txt”无法在firefox 26中运行

时间:2014-09-18 11:28:05

标签: csv file-upload cross-browser

我正在尝试使用

将.CSV和.XLs文件上传到我的网络应用程序
    <table border='1'>
<tr>
   <td>   
      Remember you can upload only CSV and xls files. max size = 15mb       
   </td>
</tr>
<tr>
   <td>
      <input type="file" name="filename" id="filename"
      accept=".csv,.xls" value=""/>  

     <input type="file" name="pic" accept="video/*">                                                         
   </td>
</tr>
<tr>
   <td>
      <input type="Button" value="Save File" onclick=CheckFileName(); />
   </td>
</tr>
</table>

但是&#34;接受=&#34; .csv,.xls&#34;在 chrome 中工作正常,而不是 firefox 26

我哪里错了?如何解决这个?

注意:我可以使用jscript进行此文件验证,但我想使用accept =&#34;&#34;而不是脚本。

0 个答案:

没有答案