我刚刚遇到accept
的{{1}}属性,我真的很喜欢它,因为我看到如果我使用此属性,我不需要为输入文件类型编写单独的验证。它非常简单
<input type="file">
只接受图片文件..
<input type="file" accept="image/*">
只接受音频文件..
<input type="file" accept="audio/*">
只接受视频文件..
但是我看到如果我有些选择不同的文件,那么我会看到一条错误消息
<input type="file" accept="video/*">
我只是想知道它是否能以某种方式更改此错误消息并将其打印出来以便我选择...也可以在此错误消息中添加一些CSS吗?
答案 0 :(得分:3)
这使用jquery验证器:
<input type="file" accept="image/*" data-rule-required="true" data-msg-accept="Your message" />
答案 1 :(得分:1)
尝试使用一点JavaScript魔术(标记oninvalid
属性):
<input type="file" accept="image/*" oninvalid="setCustomValidity('Please, blah, blah, blah ')"/>