我需要添加一个新按钮,单击该按钮会显示一个打开的对话框,用于浏览和选择Excel工作表,上传并导入它。
答案 0 :(得分:3)
只需使用html input
标记,
<input type="file" name="file"/>
随浏览按钮一起提供。允许你上传。
上传excel
个文件,
对于 Excel Files 2003-2007 (。xls),请使用:
<input type="file" accept="application/vnd.ms-excel" />
对于 Excel Files 2010 (。xlsx),请使用:
<input type="file" accept="application/vnd.openxmlformats-officedocument.spreadsheetml.sheet" />
验证它是否为excel文件