<input type="file" name="images[]" class="upload" accept="image/*" multiple="multiple"/>
现在当我选择5张图片时,如何用jquery获取该数字?所以当它被选中时,我想写
选择了5张图片。
答案 0 :(得分:1)
<强> Demo 强>
使用files.length
$('input[type="file"]').change(function () {
console.log($(this)[0].files.length);
});