答案 0 :(得分:1)
否。
accept属性仅接受MIME类型和文件扩展名。
文件名的其他部分不能匹配。
如果选择的文件选择不正确,则可以使用JavaScript读取文件名并显示错误。
<item attribute = "val1">
document.querySelector('input').addEventListener("input", function () {
if (this.files[0].name.match(/_32\..{3,4}$/)) {
console.log("OK");
} else {
console.log("Not OK");
}
});