>  기사  >  웹 프론트엔드  >  jquery 키보드 이벤트 수정 code_jquery

jquery 키보드 이벤트 수정 code_jquery

WBOY
WBOY원래의
2016-05-16 18:10:19923검색
코드 복사 코드는 다음과 같습니다.

(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("개요 스타일", "없음")
}
}
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 절대 위치 지정 요소와 고정 위치 지정 요소에만 유효합니다. tabIndex를 추가하면 점선을 제거할 수 없습니다.
}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)

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.