码迷,mamicode.com
首页 > 其他好文 > 详细

firefoxfocus为火狐新建焦点事件

时间:2014-10-04 22:41:17      阅读:294      评论:0      收藏:0      [点我收藏+]

标签:io   使用   ar   for   sp   问题   c   on   cti   

众所周知,firefox下的element除了有tab线的,其他没有焦点这个概念(你可以给一般元素加tabindex属性使得它有焦点).那没有,为什么不自己做一个.
<script>
//Just can be running in firefox studio
if(document.addEventListener)
  document.addEventListener("click",function (event){firefoxfocuschange(event);} , false);
  //The ie brower does not support the function
var lastfocus=new Object;//Get a Object to pass the script interpreter
var currentfocus=null;//供其他方法使用的焦点设置
function firefoxfocuschange(e){
    var e=e||window.event;//Compatibility, can be removed,because not to be running in ie studio
    var newfocus=e.target||e.srcElement;//ditto
    if(lastfocus!=newfocus){//console.log("focuschange");
      if(!lastfocus.tabindex){//console.log("notabindex");//Check element has property for tabindex to prevent running twice.
        if(lastfocus.onblur){//console.log("runblur");
              lastfocus.onblur();
               }
         }
    }
    if(currentfocus){
    lastfocus=currentfocus;currentfocus=null;}//经测试,ff下,监听事件是在onclick方法执行后发生,那么如果用onclick方法改变焦点,那必须为此问题加入这个currentfocus
else{
lastfocus=newfocus;}
    }
</script>

测 试已通过,注释直接英文写的,本人练习英语中,加上这段自制的脚本,可以直接修复firefox下的onblur问题(其实你也可以加入获得focus事 件),可以运用的一些老项目中去,有时间我再吧这个封装一下,变成模块,需要暴露一个onfocus出去(对于高级语言来说等于继承后覆写),在链式查找 上截住以前的设置焦点设置方法,不让他去到window.onfocus,让onfocus都正常,也不知道给不给就是了,让firefox完全和ie下 的focus事件一样.

firefoxfocus为火狐新建焦点事件

标签:io   使用   ar   for   sp   问题   c   on   cti   

原文地址:http://www.cnblogs.com/mikueye/p/4006274.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!