warb
非常火狐
非常火狐
  • UID51578
  • 注册日期2015-10-28
  • 最后登录2019-05-04
  • 发帖数639
  • 经验666枚
  • 威望0点
  • 贡献值816点
  • 好评度27点
阅读:749回复:0

使用了自动选中地址栏脚本后下拉地址栏书签建议会自动收起

楼主#
更多 发布于:2017-09-17 16:29
把鼠标移到想要选择的书签建议的时候,书签建议下拉菜单就会收起导致无法选择。这个怎么破??
 //自动选中地址栏
    gURLBar.addEventListener("mouseover", function(e){
            if(e.target.compareDocumentPosition(document.activeElement)!= 20)
                    e.target.select();
    }, false);
    gURLBar.addEventListener("mouseout", function(e){
            var k = e.target.compareDocumentPosition(e.relatedTarget);
            if(k!=0 && k!=20){
                    e.target.blur();
                    gBrowser.selectedBrowser.focus();
            }
    }, false);
游客

返回顶部