有人知道为什么吗
$('#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" />
不工作?
干杯
卡洛斯。
答案 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"/>