1

是否可以从IE9 中的拖放事件获取文件名位置?

我试过了:

    $('#myDiv').addEventListener('drop', function (e) {
            e.preventDefault();

            if (e.dataTransfer.files === undefined) // <-- true

或者

    $('#dropTarget').on('drop', function(e){
        if(e.originalEvent.dataTransfer){
            if(e.originalEvent.dataTransfer.files.length) // <-- files is undefined.. 

are there any other tricks that could be done to get that location on a drag/drop in IE9?

4

1 回答 1

3

IE 9 不支持 File API 这是一个兼容性图表

http://caniuse.com/#search=fileapi

于 2013-09-20T17:58:05.210 回答