jQuery输入类型文件* .xlsx

时间:2019-03-18 12:50:19

标签: jquery file input types

有人知道为什么吗

$('#id_thefile').attr('accept', '*.xlsx');
<html>
<head>
<script language="javascript" src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.slim.min.js">
</script>
</head>
<body>

<!-- the input I want to change with jquery //-->
<input id="id_thefile" type="file" />

不工作?

干杯

卡洛斯。

1 个答案:

答案 0 :(得分:0)

更改

$('#id_thefile').attr('accept', '*.xlsx');

$('#id_thefile').attr('accept', '.xlsx');

您也可以像下面这样直接在HTML接受中添加

<html>
<head>
</script>
</head>
<body>

<!-- the input I want to change with jquery //-->
<input id="id_thefile" type="file" accept=".xls,.xlsx"/>