mirror of
https://github.com/jquery/jquery.git
synced 2024-11-23 02:54:22 +00:00
Stop trying to emulate the focus/blur event in IE, doesn't work as one might expect, anyway. Instead, implement the focusin/focusout events in all other browsers - which creates a much better parity across all browsers. Uses event capturing instead of bubbling to make it happen. Thanks to Alexander for the recommendation and to Joern Zaefferer for the original focus/blur delegation code.
This commit is contained in:
parent
5dc6b7ce34
commit
03481a52c7
21
src/event.js
21
src/event.js
@ -720,24 +720,23 @@ function trigger( type, elem, args ) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Create "bubbling" focus and blur events
|
// Create "bubbling" focus and blur events
|
||||||
if ( !jQuery.support.focusBubbles ) {
|
if ( document.addEventListener ) {
|
||||||
|
jQuery.each({ focus: "focusin", blur: "focusout" }, function( orig, fix ){
|
||||||
jQuery.each({ focus: "focusin", blur: "focusout" }, function( orig, fix ){
|
jQuery.event.special[ fix ] = {
|
||||||
jQuery.event.special[ orig ] = {
|
|
||||||
setup: function() {
|
setup: function() {
|
||||||
jQuery.event.add( this, fix, ieHandler );
|
this.addEventListener( orig, handler, true );
|
||||||
},
|
},
|
||||||
teardown: function() {
|
teardown: function() {
|
||||||
jQuery.event.remove( this, fix, ieHandler );
|
this.removeEventListener( orig, handler, true );
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
function ieHandler() {
|
function handler( e ) {
|
||||||
arguments[0].type = orig;
|
e = jQuery.event.fix( e );
|
||||||
return jQuery.event.handle.apply(this, arguments);
|
e.type = fix;
|
||||||
|
return jQuery.event.handle.call( this, e );
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
jQuery.each(["bind", "one"], function(i, name) {
|
jQuery.each(["bind", "one"], function(i, name) {
|
||||||
|
@ -111,7 +111,6 @@
|
|||||||
|
|
||||||
jQuery.support.submitBubbles = eventSupported("submit");
|
jQuery.support.submitBubbles = eventSupported("submit");
|
||||||
jQuery.support.changeBubbles = eventSupported("change");
|
jQuery.support.changeBubbles = eventSupported("change");
|
||||||
jQuery.support.focusBubbles = eventSupported("focus");
|
|
||||||
|
|
||||||
// release memory in IE
|
// release memory in IE
|
||||||
root = script = div = all = a = null;
|
root = script = div = all = a = null;
|
||||||
|
@ -75,6 +75,24 @@
|
|||||||
<td id='textbind' class="red">TEXT</td>
|
<td id='textbind' class="red">TEXT</td>
|
||||||
<td id='textareabind' class="red">TEXTAREA</td>
|
<td id='textareabind' class="red">TEXTAREA</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>Focusin:</td>
|
||||||
|
<td id='selectfocus' class="red">SELECT</td>
|
||||||
|
<td id='mselectfocus' class="red">MULTI</td>
|
||||||
|
<td id='checkboxfocus' class="red">CHECKBOX</td>
|
||||||
|
<td id='radiofocus' class="red">RADIO</td>
|
||||||
|
<td id='textfocus' class="red">TEXT</td>
|
||||||
|
<td id='textareafocus' class="red">TEXTAREA</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>Focusout:</td>
|
||||||
|
<td id='selectblur' class="red">SELECT</td>
|
||||||
|
<td id='mselectblur' class="red">MULTI</td>
|
||||||
|
<td id='checkboxblur' class="red">CHECKBOX</td>
|
||||||
|
<td id='radioblur' class="red">RADIO</td>
|
||||||
|
<td id='textblur' class="red">TEXT</td>
|
||||||
|
<td id='textareablur' class="red">TEXTAREA</td>
|
||||||
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
<h2>Submit Tests</h2>
|
<h2>Submit Tests</h2>
|
||||||
<table>
|
<table>
|
||||||
@ -112,6 +130,12 @@
|
|||||||
|
|
||||||
<script type='text/javascript'>
|
<script type='text/javascript'>
|
||||||
jQuery.fn.addChangeTest = function( id, prevent ) {
|
jQuery.fn.addChangeTest = function( id, prevent ) {
|
||||||
|
this.bind("focusin", function(){
|
||||||
|
jQuery(id + "focus").blink();
|
||||||
|
}).bind("focusout", function(){
|
||||||
|
jQuery(id + "blur").blink();
|
||||||
|
});
|
||||||
|
|
||||||
return this.bind("change", function(e){
|
return this.bind("change", function(e){
|
||||||
jQuery(id + "bind").blink();
|
jQuery(id + "bind").blink();
|
||||||
}).live("change", function(e){
|
}).live("change", function(e){
|
||||||
|
Loading…
Reference in New Issue
Block a user