僅限制xls文件上傳
<input id="uploadSkufile" type="file" value="批量導入" style="float:left" name="uploadSkufile" accept="application/vnd.ms-excel">
僅限制xlsx文件上傳
<input id="uploadSkufile" type="file" value="批量導入" style="float:left" name="uploadSkufile" accept="application/vnd.openxmlformats-officedocument.spreadsheetml.sheet">
同時限制xls文件和xlsx文件兩種,以逗號分隔, 補充accept屬性值即可
<input id="uploadSkufile" type="file" value="批量導入" style="float:left" name="uploadSkufile" accept="application/vnd.ms-excel,application/vnd.openxmlformats-officedocument.spreadsheetml.sheet">