When user drags in a file, is there a 开发者_StackOverflowway in Javascript to detect its filename onDragEnter (not after it's uploaded)?
Not every browser supports dragging files to a file input (FF4 on OS X certainly doesn't), but you can check the value of the file input on change event, which should provide a uniform result across browsers.
Depending on the browser, you can check the value of
<input type="file" id="foo" />
like so:
// vanilla JS
var filename = document.getElementById('foo').value;
// jQuery
var filename = $('#foo').val();
You'd do this inside of a change listener, like so (example for jQuery in jsFiddle below):
function alertFileName()
{
    alert(this.value);
}
var input = document.getElementById('foo');
// not IE friendly; use `attachEvent` instead
input.addEventListener('change', alertFilename, false);
If you upload a file named bar.txt, filename will be:
'C:\fakepath\bar.txt'(Chrome)'bar.txt'(Firefox 4, Safari)- ??? (IE)
 
I am not set up to test IE at present; feel free to try it yourself.
                                        
                                        
                                        
                                        
                                        
                                        
                                        
                                        
 加载中,请稍侯......
      
精彩评论