Home > Web Front-end > JS Tutorial > body text

jquery keyboard event modification code_jquery

WBOY
Release: 2016-05-16 18:10:19
Original
917 people have browsed it
Copy code The code is as follows:

(function($){
var no_ie_pr=function(e ){
var _this=e;
var tabpr=function(e){
_this.attr('tabIndex', 1).click(function(){
_this.focus();
});
if(!$.browser.msie){
_this.css("outline-style", "none");
}
}
var gettag =_this[0].tagName.toLowerCase();
var oe=['abbr','acronym','address','b','bdo','big','blockquote','center' ,'cite','dd','del','dir','dfn','dl','dt','em','font','form','h1','h2',' h3','h4','h5','h6','i','ins','img','ins','kbd','li','menu','ol','p' ,'pre','q','s','samp','small','strike','strong','sub','sup','th','tr','tt',' u','ul','var'];
if($.inArray(gettag,oe)!=-1){
tabpr();
}else{
if ($ .browser.msie) {
var ce=['span','div'];
if($.inArray(gettag,ce)!=-1){
//IE only for absolute Positioned elements and fixed positioning elements are valid. Adding tabIndex cannot eliminate the dashed line
}else{
var ce=['label','legend','tbody','tfoot','thead'];
if($.inArray(gettag,ce)!=-1){
tabpr();
}
}
}else{
var ce=['caption','fieldset ','table','td','code','div','span','label','legend','tbody','tfoot','thead'];
if($. inArray(gettag,ce)!=-1){
tabpr();
}
}
}
}

$.fn.oldKeyup=$.fn .keyup;
$.fn.keyup=function(fn){
no_ie_pr(this);
$(this).oldKeyup(fn);
}

$. fn.oldKeypress=$.fn.keypress;
$.fn.keypress=function(fn){
no_ie_pr(this);
$(this).oldKeypress(fn);
}

$.fn.oldKeydown=$.fn.keydown;
$.fn.keydown=function(fn){
no_ie_pr(this);
$(this).oldKeydown(fn );
}

})(jQuery)
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
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!