event.target在手机上的工作方式有所不同吗?

时间:2016-02-26 15:58:54

标签: javascript jquery javascript-events

我目前正在使用"溢出"创建一个工具栏组件。菜单。当有人在菜单外点击时,我希望菜单关闭,所以我在文档中附加了一个简单的点击处理程序,检查点击的目标是在菜单内还是在菜单之外。支票如下:

var eventOutsideTarget = (overflowEl[0] !== event.target) 
    && (overflowEl.find(event.target).length === 0);

因此,这适用于我电脑上Chrome中的所有情况。如果单击菜单外部,则将其设置为true。如果单击另一个菜单打开,则原始菜单将关闭,新的菜单将按预期打开。

在Chrome Android和iOS Safari上,行为有所不同。如果您点击页面上不是菜单的任何地方,它会关闭任何打开的菜单;但是,如果您点击其他菜单,则会打开新菜单,但旧菜单仍然会打开。

我怀疑这与检查的第二部分有关:overflowEl.find(event.target).length === 0

这在桌面上找不到该元素,但在移动设备上,即使您在其他菜单中点击,它也会评估为真。

这对我来说似乎是个错误,但奇怪的是它发生在Android和iOS上,而不是在Chrome桌面上。

非常感谢任何帮助。

编辑:为完整性添加更多代码

angular.module('s4p.directives').directive('s4pToolbar', function ($compile, $document) {

    return {

        restrict: 'E',
        scope: {},
        controller: 's4pToolbarCtrl',
        transclude: true,
        template:   '<s4p-toolbar-main><div transclude-main></div></s4p-toolbar-main>' + 
                    '<s4p-toolbar-overflow-button ng-class="{&quot;is-open&quot;:overflowOpen}">' + 
                        '<s4p-button button-style="circle" icon="/images/iconSprite.svg#dot-menu" ng-click="toggleOverflow()"></s4p-button>' + 
                         '<s4p-toolbar-overflow ng-show="overflowOpen" class="ng-hide" ng-cloak><div transclude-overflow></div></s4p-toolbar-overflow>' +
                    '</s4p-toolbar-overflow-button>'


        ,
        link: function (scope, element, attrs, controller, transclude) {

            // Copy the contents of the toolbar into both slots in the template
            transclude(scope, function(clone) {
                element.find('[transclude-main]').replaceWith(clone);
            });

            transclude(scope, function(clone) {
                element.find('[transclude-overflow]').replaceWith(clone);
            });


            // Handle clicking anywhere on the page except the overflow to close it.
            var overflowEl = element.find('s4p-toolbar-overflow-button');

            var documentClickHandler = function (event) {

                var eventOutsideTarget = (overflowEl[0] !== event.target) && (overflowEl.find(event.target).length === 0);

                if (eventOutsideTarget) {
                    scope.$apply(function () {
                        scope.overflowOpen = false;
                    });
                }
            };

            $document.on("click", documentClickHandler);
                scope.$on("$destroy", function () {
                $document.off("click", documentClickHandler);
            });

            // Update the visibility of all the sections
            controller.updateSectionsVisibility();

        }


    };


})

1 个答案:

答案 0 :(得分:0)

好的,所以答案与event.target无关,虽然这并没有阻止我浪费3个小时的时间来思考它!

问题在于,当您点击另一个菜单按钮时,文档正文上的点击根本没有注册,虽然单击菜单按钮正在触发并打开菜单,但是文档正文上的点击被忽略尽管它在点击文档的其他部分时确实有效。

修复是这一行

$document.on("click", documentClickHandler);

需要这样......

$document.on("click touchstart", documentClickHandler);

我仍然不完全理解为什么,或为什么原始版本适用于页面上的大多数元素(可能是没有自己的事件的元素?),但它有效。向任何来这里寻找原始问题答案的人致歉。