确定用户是单击滚动条还是内容(onclick用于本机滚动条)

时间:2012-04-06 15:13:47

标签: events scrollbar jquery

我正在尝试在JQuery中创建自定义事件,这些事件应该在单击滚动条时检测到 1
我知道有很多文字,但我的所有问题都是粗体的,并且你可以立即使用JSFiddle example

因为我没有找到任何内置功能,所以 我必须创建一个hasScroll函数,检查元素是否有滚动条,

$.fn.hasScroll = function(axis){
    var overflow = this.css("overflow"),
        overflowAxis;

    if(typeof axis == "undefined" || axis == "y") overflowAxis = this.css("overflow-y");
    else overflowAxis = this.css("overflow-x");

    var bShouldScroll = this.get(0).scrollHeight > this.innerHeight();

    var bAllowedScroll = (overflow == "auto" || overflow == "visible") ||
                         (overflowAxis == "auto" || overflowAxis == "visible");

    var bOverrideScroll = overflow == "scroll" || overflowAxis == "scroll";

    return (bShouldScroll && bAllowedScroll) || bOverrideScroll;
};

inScrollRange函数,检查执行的点击是否在滚动范围内。

var scrollSize = 18;

function inScrollRange(event){
    var x = event.pageX,
        y = event.pageY,
        e = $(event.target),
        hasY = e.hasScroll(),
        hasX = e.hasScroll("x"),
        rX = null,
        rY = null,
        bInX = false,
        bInY = false

    if(hasY){
        rY = new RECT();
        rY.top = e.offset().top;
        rY.right = e.offset().left + e.width();
        rY.bottom = rY.top +e.height();
        rY.left = rY.right - scrollSize;

        //if(hasX) rY.bottom -= scrollSize;
        bInY = inRect(rY, x, y);
    }

    if(hasX){
        rX = new RECT();
        rX.bottom = e.offset().top + e.height();
        rX.left = e.offset().left;
        rX.top = rX.bottom - scrollSize;
        rX.right = rX.left + e.width();

        //if(hasY) rX.right -= scrollSize;
        bInX = inRect(rX, x, y);
    }

    return bInX || bInY;
}

所有滚动条尺寸均匀吗?例如,在Firefox和IE中它是18px。
假设没有自定义滚动条,某些浏览器中是否有任何额外的填充或大小?

这些功能都按预期执行(从我能辨别的内容)。

制作自定义事件有点棘手,但我有点工作。唯一的问题是,如果点击的元素附加了一个mousedown / up事件,那么它也会被触发。

我似乎无法阻止其他事件在触发时触发,我称之为mousedownScroll / mouseupScroll事件。

$.fn.mousedownScroll = function(fn, data){
    if(typeof fn == "undefined" && typeof data == "undefined"){
        $(this).trigger("mousedownScroll");
        return;
    }

    $(this).on("mousedownScroll", data, fn);
};

$.fn.mouseupScroll = function(fn, data){
    if(typeof fn == "undefined" && typeof data == "undefined"){
        $(this).trigger("mouseupScroll");
        return;
    }

    $(this).on("mouseupScroll", data, fn);
};

$(document).on("mousedown", function(e){
    if(inScrollRange(e)){
        $(e.target).trigger("mousedownScroll");
    }
});

$(document).on("mouseup", function(e){
    if(inScrollRange(e)){
        $(e.target).trigger("mouseupScroll");
    }
});

$("selector").mousedown(function(e){
    console.log("Clicked content."); //Fired when clicking scroller as well
});

$("selector").mousedownScroll(function(e){
    console.log("Clicked scroller.");
});

如何阻止其他“点击”事件触发?

在我问的时候,请尽可能地优化代码。

Here's a JSFiddle to mess around with.

我之所以这样做是因为我正在开发一个更大的插件。当我右键单击其中一个滚动条时,它会显示一个自定义上下文菜单。我不希望这样。所以我认为我应该创建一个检查滚动点击(mouseup / downs)的事件,然后阻止显示上下文菜单。为了做到这一点,我需要在正常点击之前滚动点击,并且如果可能的话,还要停止普通点击。

我只是在这里大声思考,但是也许有办法获得绑定到元素的所有函数,然后切换它们的添加顺序?我知道函数按照它们被添加的顺序执行(第一次添加第一个调用),因此,如果我可以进入该过程,也许可以在点击事件之前插入事件到JQuery的整个“注册”。 / p>


1 只能使用mousedown / mouseup,因为单击滚动条时不会触发click。如果这是错误的,请提供一个工作示例/代码

12 个答案:

答案 0 :(得分:23)

解决:

我可以提出最短的滚动条点击检测,在IE,Firefox,Chrome上进行测试。

var clickedOnScrollbar = function(mouseX){
  if( $(window).outerWidth() <= mouseX ){
    return true;
  }
}

$(document).mousedown(function(e){
  if( clickedOnScrollbar(e.clientX) ){
    alert("clicked on scrollbar");
  }
});

工作示例: https://jsfiddle.net/s6mho19z/

答案 1 :(得分:15)

你可能会使用这个黑客。

您可以尝试劫持mousedownmouseup事件,并在点击带有自定义供电功能的滚动条时避开它们。

$.fn.mousedown = function(data, fn) {
    if ( fn == null ) {
        fn = data;
        data = null;
    }    
    var o = fn;
    fn = function(e){
        if(!inScrollRange(e)) {
            return o.apply(this, arguments);
        }
        return;
    };
    if ( arguments.length > 0 ) {
        return this.bind( "mousedown", data, fn );
    } 
    return this.trigger( "mousedown" );
};

mousedownScrollmouseupScroll事件的倒数。

$.fn.mousedownScroll = function(data, fn) {
    if ( fn == null ) {
        fn = data;
        data = null;
    }    
    var o = fn;
    fn = function(e){
        if(inScrollRange(e)) {
            e.type = "mousedownscroll";
            return o.apply(this, arguments);
        }
        return;
    };
    if ( arguments.length > 0 ) {
        return this.bind( "mousedown", data, fn );
    } 
    return this.trigger( "mousedown" );
};

顺便说一句,我认为滚动条宽度是一个操作系统设置。

答案 2 :(得分:9)

我在之前的项目中遇到了同样的问题,我推荐这个解决方案。它不是很干净,但它有效,我怀疑我们可以用html做得更好。以下是我的解决方案的两个步骤:

<强> 1。测量桌面环境中滚动条的宽度。

为了实现这一点,在应用程序启动时,您执行以下操作:

将以下元素添加到正文中:

<div style='width: 50px; height: 50px; overflow: scroll'><div style='height: 1px;'/></div>

使用jQUery的.width()测量先前添加元素的内部div的with,并将滚动条的宽度存储在某处(scollbar的宽度为50 - 内部div的宽度)

删除用于测量滚动条的额外元素(现在您已获得结果,删除添加到正文中的元素)。

用户不应看到所有这些步骤,并且您的操作系统上有滚动条的宽度

例如,您可以使用此代码段:

var measureScrollBarWidth = function() {
    var scrollBarMeasure = $('<div />');
    $('body').append(scrollBarMeasure);
    scrollBarMeasure.width(50).height(50)
        .css({
            overflow: 'scroll',
            visibility: 'hidden',
            position: 'absolute'
        });

    var scrollBarMeasureContent = $('<div />').height(1);
    scrollBarMeasure.append(scrollBarMeasureContent);

    var insideWidth = scrollBarMeasureContent.width();
    var outsideWitdh = scrollBarMeasure.width();
    scrollBarMeasure.remove();

    return outsideWitdh - insideWidth;
};

<强> 2。检查滚动条上是否有点击。

现在您已经拥有了滚动条的宽度,您可以使用事件的坐标来计算相对于滚动条的位置矩形的事件坐标并执行非常棒的事情......

如果要过滤点击次数,可以在处理程序中返回false以防止它们传播。

答案 3 :(得分:7)

确保您的scollarea的内容完全[over]填充父div。

然后,您可以区分内容点击次数和容器点击次数。

<强> HTML:

<div class='test container'><div class='test content'></div></div>
<div id="results">please click</div>

<强>的CSS:

#results {
  position: absolute;
  top: 110px;
  left: 10px;
}

.test {
  position: absolute;
  left: 0;
  top: 0;
  width: 100px;
  height: 100px;
  background-color: green;
}

.container {
  overflow: scroll;
}

.content {
  background-color: red;
}

<强> JS:

function log( _l ) {
  $("#results").html( _l );
}

$('.content').on( 'mousedown', function( e ) {
  log( "content-click" );
  e.stopPropagation();
});

$('.container').on( 'mousedown', function( e ) {
  var pageX = e.pageX;
  var pageY = e.pageY;
  log( "scrollbar-click" );
});

http://codepen.io/jedierikb/pen/JqaCb

答案 4 :(得分:3)

使用以下解决方案来检测用户是否在元素的滚动条上单击了鼠标。没有测试它如何与窗口的滚动条一起使用。我猜Pete的解决方案可以更好地使用窗口滚动。

window.addEventListener("mousedown", onMouseDown);

function onMouseDown(e) {
  if (e.offsetX > e.target.clientWidth || e.offsetY > e.target.clientHeight) 
  {
      // mouse down over scroll element
   }
}

答案 5 :(得分:1)

我会提交自己的答案并接受Alexander's answer,因为它使其完美运行,并且支持Samuel's answer,因为它正确计算了滚动条宽度,这也是我所需要的。< / p>


话虽这么说,我决定制作两个独立的事件,而不是试图覆盖/覆盖JQuery的mousedown事件。

这给了我所需的灵活性,而不会搞乱JQuery自己的事件,并且很容易做到。

  • mousedownScroll
  • mousedownContent

以下是使用Alexanders和我自己的两个实现。 两者都像我原先打算的那样工作,但前者可能是最好的。


  • Here's a JSFiddle实现亚历山大的答案+ Samuel的答案。

    $.fn.hasScroll = function(axis){
        var overflow = this.css("overflow"),
            overflowAxis;
    
        if(typeof axis == "undefined" || axis == "y") overflowAxis = this.css("overflow-y");
        else overflowAxis = this.css("overflow-x");
    
        var bShouldScroll = this.get(0).scrollHeight > this.innerHeight();
    
        var bAllowedScroll = (overflow == "auto" || overflow == "visible") ||
                             (overflowAxis == "auto" || overflowAxis == "visible");
    
        var bOverrideScroll = overflow == "scroll" || overflowAxis == "scroll";
    
        return (bShouldScroll && bAllowedScroll) || bOverrideScroll;
    };
    
    $.fn.mousedown = function(data, fn) {
        if ( fn == null ) {
            fn = data;
            data = null;
        }    
        var o = fn;
        fn = function(e){
            if(!inScrollRange(e)) {
                return o.apply(this, arguments);
            }
            return;
        };
        if ( arguments.length > 0 ) {
            return this.bind( "mousedown", data, fn );
        } 
        return this.trigger( "mousedown" );
    };
    
    $.fn.mouseup = function(data, fn) {
        if ( fn == null ) {
            fn = data;
            data = null;
        }    
        var o = fn;
        fn = function(e){
            if(!inScrollRange(e)) {
                return o.apply(this, arguments);
            }
            return;
        };
        if ( arguments.length > 0 ) {
            return this.bind( "mouseup", data, fn );
        } 
        return this.trigger( "mouseup" );
    };
    
    $.fn.mousedownScroll = function(data, fn) {
        if ( fn == null ) {
            fn = data;
            data = null;
        }    
        var o = fn;
        fn = function(e){
            if(inScrollRange(e)) {
                e.type = "mousedownscroll";
                return o.apply(this, arguments);
            }
            return;
        };
        if ( arguments.length > 0 ) {
            return this.bind( "mousedown", data, fn );
        } 
        return this.trigger( "mousedown" );
    };
    
    $.fn.mouseupScroll = function(data, fn) {
        if ( fn == null ) {
            fn = data;
            data = null;
        }    
        var o = fn;
        fn = function(e){
            if(inScrollRange(e)) {
                e.type = "mouseupscroll";
                return o.apply(this, arguments);
            }
            return;
        };
        if ( arguments.length > 0 ) {
            return this.bind( "mouseup", data, fn );
        } 
        return this.trigger( "mouseup" );
    };
    
    var RECT = function(){
        this.top = 0;
        this.left = 0;
        this.bottom = 0;
        this.right = 0;
    }
    
    function inRect(rect, x, y){
        return (y >= rect.top && y <= rect.bottom) &&
               (x >= rect.left && x <= rect.right)
    }
    
    
    var scrollSize = measureScrollWidth();
    
    function inScrollRange(event){
        var x = event.pageX,
            y = event.pageY,
            e = $(event.target),
            hasY = e.hasScroll(),
            hasX = e.hasScroll("x"),
            rX = null,
            rY = null,
            bInX = false,
            bInY = false
    
        if(hasY){ 
            rY = new RECT();
            rY.top = e.offset().top;
            rY.right = e.offset().left + e.width();
            rY.bottom = rY.top +e.height();
            rY.left = rY.right - scrollSize;
    
            //if(hasX) rY.bottom -= scrollSize;
            bInY = inRect(rY, x, y);
        }
    
        if(hasX){
            rX = new RECT();
            rX.bottom = e.offset().top + e.height();
            rX.left = e.offset().left;
            rX.top = rX.bottom - scrollSize;
            rX.right = rX.left + e.width();
    
            //if(hasY) rX.right -= scrollSize;
            bInX = inRect(rX, x, y);
        }
    
        return bInX || bInY;
    }
    
    $(document).on("mousedown", function(e){
        //Determine if has scrollbar(s)
        if(inScrollRange(e)){
            $(e.target).trigger("mousedownScroll");
        }
    });
    
    $(document).on("mouseup", function(e){
        if(inScrollRange(e)){
            $(e.target).trigger("mouseupScroll");
        }
    });
    });
    
    function measureScrollWidth() {
        var scrollBarMeasure = $('<div />');
        $('body').append(scrollBarMeasure);
        scrollBarMeasure.width(50).height(50)
            .css({
                overflow: 'scroll',
                visibility: 'hidden',
                position: 'absolute'
            });
    
        var scrollBarMeasureContent = $('<div />').height(1);
        scrollBarMeasure.append(scrollBarMeasureContent);
    
        var insideWidth = scrollBarMeasureContent.width();
        var outsideWitdh = scrollBarMeasure.width();
        scrollBarMeasure.remove();
    
        return outsideWitdh - insideWidth;
    };
    
  • Here's a JSFiddle我决定做的事情。

    $.fn.hasScroll = function(axis){
        var overflow = this.css("overflow"),
            overflowAxis,
            bShouldScroll,
            bAllowedScroll,
            bOverrideScroll;
    
        if(typeof axis == "undefined" || axis == "y") overflowAxis = this.css("overflow-y");
        else overflowAxis = this.css("overflow-x");
    
        bShouldScroll = this.get(0).scrollHeight > this.innerHeight();
    
        bAllowedScroll = (overflow == "auto" || overflow == "visible") ||
            (overflowAxis == "auto" || overflowAxis == "visible");
    
        bOverrideScroll = overflow == "scroll" || overflowAxis == "scroll";
    
        return (bShouldScroll && bAllowedScroll) || bOverrideScroll;
    };
    
    $.fn.mousedownScroll = function(fn, data){
        var ev_mds = function(e){
            if(inScrollRange(e)) fn.call(data, e);
        }
        $(this).on("mousedown", ev_mds);
        return ev_mds;
    };
    
    $.fn.mouseupScroll = function(fn, data){
        var ev_mus = function(e){
            if(inScrollRange(e)) fn.call(data, e);
        }
        $(this).on("mouseup", ev_mus);
        return ev_mus;
    };
    
    $.fn.mousedownContent = function(fn, data){
        var ev_mdc = function(e){
            if(!inScrollRange(e)) fn.call(data, e);
        }
    
        $(this).on("mousedown", ev_mdc);
    
        return ev_mdc;
    };
    
    $.fn.mouseupContent = function(fn, data){
        var ev_muc = function(e){
            if(!inScrollRange(e)) fn.call(data, e);
        }
        $(this).on("mouseup", ev_muc);
        return ev_muc;
    };
    
    var RECT = function(){
        this.top = 0;
        this.left = 0;
        this.bottom = 0;
        this.right = 0;
    }
    
    function inRect(rect, x, y){
        return (y >= rect.top && y <= rect.bottom) &&
            (x >= rect.left && x <= rect.right)
    }
    
    var scrollSize = measureScrollWidth();
    
    function inScrollRange(event){
        var x = event.pageX,
            y = event.pageY,
            e = $(event.target),
            hasY = e.hasScroll(),
            hasX = e.hasScroll("x"),
            rX = null,
            rY = null,
            bInX = false,
            bInY = false
    
        if(hasY){ 
            rY = new RECT();
            rY.top = e.offset().top;
            rY.right = e.offset().left + e.width();
            rY.bottom = rY.top +e.height();
            rY.left = rY.right - scrollSize;
    
            //if(hasX) rY.bottom -= scrollSize;
            bInY = inRect(rY, x, y);
        }
    
        if(hasX){
            rX = new RECT();
            rX.bottom = e.offset().top + e.height();
            rX.left = e.offset().left;
            rX.top = rX.bottom - scrollSize;
            rX.right = rX.left + e.width();
    
            //if(hasY) rX.right -= scrollSize;
            bInX = inRect(rX, x, y);
        }
    
        return bInX || bInY;
    }
    
    function measureScrollWidth() {
        var scrollBarMeasure = $('<div />');
        $('body').append(scrollBarMeasure);
        scrollBarMeasure.width(50).height(50)
            .css({
                overflow: 'scroll',
                visibility: 'hidden',
                position: 'absolute'
            });
    
        var scrollBarMeasureContent = $('<div />').height(1);
        scrollBarMeasure.append(scrollBarMeasureContent);
    
        var insideWidth = scrollBarMeasureContent.width();
        var outsideWitdh = scrollBarMeasure.width();
        scrollBarMeasure.remove();
    
        return outsideWitdh - insideWidth;
    };
    

答案 6 :(得分:1)

唯一适用于我的解决方案(仅针对IE11进行测试):

$(document).mousedown(function(e){
    bScrollbarClicked = e.clientX > document.documentElement.clientWidth || e.clientY > document.documentElement.clientHeight;

});

答案 7 :(得分:1)

我需要检测mousedown上的滚动条,但不是在窗口上,而是在div上, 并且我已经有了填充内容的元素,我用它来检测没有滚动条的大小:

.element {
    position: relative;
}
.element .fill-node {
    position: absolute;
    left: 0;
    top: -100%;
    width: 100%;
    height: 100%;
    margin: 1px 0 0;
    border: none;
    opacity: 0;
    pointer-events: none;
    box-sizing: border-box;
}

检测代码与@DariuszSikorski answer类似,但包括偏移量并使用可滚动内部的节点:

function scrollbar_event(e, node) {
    var left = node.offset().left;
    return node.outerWidth() <= e.clientX - left;
}

var node = self.find('.fill-node');
self.on('mousedown', function(e) {
   if (!scrollbar_event(e, node)) {
      // click on content
   }
});

答案 8 :(得分:1)

这里有许多涉及event.clientXelement.clientHeight等的答案。它们都是错误的。不要使用它们。

  • 如上所述,在某些平台上,overflow: scroll滚动条显示为叠加层,或者您可能已用overflow: overlay对其进行了强制。
  • Mac可能会通过插入或拔出鼠标来在持久性和覆盖式之间切换滚动条。这击倒了“启动措施”技术。
  • 垂直滚动条出现在左侧,读取顺序为从右到左。除非您有一堆特殊的逻辑,我敢打赌我会打乱从右到左的读取顺序,否则这将无法比较客户端的宽度,因为您可能没有始终如一地测试RTL。

您需要查看event.target。如有必要,请使用一个内部元素,该元素占据scroll元素的所有工作区,并查看event.target是该元素还是其后代。

答案 9 :(得分:0)

应该指出的是,在Mac OSX 10.7+上,没有持久的滚动条。滚动时会出现滚动条,完成后会消失。它们也比18px小得多(它们是7px)。

截图: http://i.stack.imgur.com/zdrUS.png

答案 10 :(得分:0)

只需检测element.offsetLeft + element.scrollWidth < event.clientX下的element.onmousedown。元素的scrollWidth不包括滚动条的宽度。它只包括内部内容。如果您还想使用水平滚动条进行检测,则可以使用高度和Y位置(而不是宽度和X位置)在该比例尺上进行相同操作。

答案 11 :(得分:0)

clickOnScrollbar = event.clientX > event.target.clientWidth || event.clientY > event.target.clientHeight;

在Chrome / Mac OS上进行了测试