关于html5中文件api 在chrome 和firefox中的不同表现?
大家讲道理
大家讲道理 2017-04-17 12:00:09
0
4
371

问题描述

在使用html5中文件api的时候 ,发现在chrome无法正确获取到选中的文件 而firefox可以

代码如下
html

    <input type="file" id="file" multiple>
    <input type="button"  value="显示文件信息" id="btn">

js

    var file = document.getElementById('file');    
        var oBtn = document.getElementById('btn');
        var files = file.files;

        oBtn.onclick = function  () {
            console.log(files,files.length);
        };

测试
chrome

firefox

大家有遇到上面的情况吗?是什么原因造成的,html5的文件api在chrome中应该兼容的呀

大家讲道理
大家讲道理

光阴似箭催人老,日月如移越少年。

reply all(4)
伊谢尔伦

I tested it and there is a little difference in the implementation of the two browsers. In Firefox, selecting a file will change the contents of the file.files array, while in Chrome, a new array will be created and the original file.files object will be replaced entirely. In other words, what you executed before:

var files = file.files;

Only the old objects are saved, new objects will not be obtained after selecting the file.

This phenomenon can be verified by comparing files === file.files after selecting the file.

The solution is also very simple, don’t save files, get it through file.files every time.

迷茫

I tested locally and Chrome can get the file. Did you trigger the button click first?

巴扎黑

file['files']

If it still doesn’t work, try jQuery, $(file).prop('files') and see if it works

Ty80

There are indeed different performances. For this situation, simulation is usually used to solve such problems!

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!