最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Any alternative to jQuery change() to detect when user selects new file via dialog box in IE8? - Stack Overflow

programmeradmin0浏览0评论

I am unable to detect when input type="file" changes its value after user selects file and the dialog box closes.

$('.myInput').change(function(){
    alert($(this).val());
})

Above jQuery code works perfectly in all browsers apart from IE. For some reason IE detects the change only after input field loses focus.

Is there a way to detect the change immediately after dialog box closes? Or maybe to force input field to lose focus after dialog box closes so IE can detect it?

I'm puzzled. Thanks for any help.

I am unable to detect when input type="file" changes its value after user selects file and the dialog box closes.

$('.myInput').change(function(){
    alert($(this).val());
})

Above jQuery code works perfectly in all browsers apart from IE. For some reason IE detects the change only after input field loses focus.

Is there a way to detect the change immediately after dialog box closes? Or maybe to force input field to lose focus after dialog box closes so IE can detect it?

I'm puzzled. Thanks for any help.

Share Improve this question asked Jun 7, 2010 at 23:47 ababaababa 1,8734 gold badges16 silver badges14 bronze badges 3
  • I'm on 1.4. I'll try 1.4.2 and see if there's any change. Thanks for the tip. – ababa Commented Jun 7, 2010 at 23:56
  • 1 This is a known IE (a.k.a special kid)/jQuery bug, there's a temporary fix available on the bug ticket but it hasn't landed in core yet. 1.4.2 got pretty much an entire event re-write (and the bug was filed back in 1.4.1) I'd give 1.4.2 a try. – Nick Craver Commented Jun 7, 2010 at 23:57
  • @ecu - Excellent :) I added an answer so future googlers can find the answer a bit easier, it seems ments aren't looked at nearly as often when scanning for the reason. – Nick Craver Commented Jun 8, 2010 at 0:06
Add a ment  | 

3 Answers 3

Reset to default 3

This was a known bug that was resolved as part of the jQuery 1.4.2 release, 1.4.2 got a major event model re-write and this was fixed as part of that, just upgrade to resolve the problem :)

Edit - Nick is right, it's fixed in 1.4.2. http://jsfiddle/7wR2L/

You can detect click and keep track of it's last value. Something like..

$('.myInput').click(function() {
   var $file = $(this);
   if( $file.val() != $file.data('lastVal') ) {
     // different
   }
   $file.data('lastVal', $file.val() );
});

Dan Heberden's ment about updating to 1.4.2 works.

However if another element is used to trigger the file file selection, the file input element no longer registers a "change" event.

The new question I created for this has a fork your fiddle to illustrate this case. See jQuery: "change" event on file input element does not fire if the file selection is triggered by an element other than the file input for details.

与本文相关的文章

发布评论

评论列表(0)

  1. 暂无评论