【HTML】前台input上传限制⽂件类型
仅限制xls⽂件上传
<input id="uploadSkufile" type="file" value="批量导⼊" name="uploadSkufile" accept="application/vnd.ms-excel">
html input type属性仅限制xlsx⽂件上传
<input id="uploadSkufile" type="file" value="批量导⼊" name="uploadSkufile" accept="application/vnd.openxmlformats-officedocument.spreadsheetml.sheet">
同时限制xls⽂件和xlsx⽂件两种,以逗号分隔,补充accept属性值即可
<input id="uploadSkufile" type="file" value="批量导⼊" name="uploadSkufile" accept="application/vnd.ms-excel,application/vnd.openxmlformats-officedocument.spreadsheetml.sheet">

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。