不确定是否有人可以在这里帮助我,我可能不得不想出一些不同的东西,但我想听听这个问题,因为我在这里找不到类似的东西。
我有一个类似应用程序的网站,可以使用可转换的菜单,我希望每当用户点击菜单外的某个地方时它就会消失。所以我使用了ngTouch进行滑动并附加了ng-click =“menuToggled = false”来点击/点击关闭菜单。
但是如果ng-click附加到正文,则菜单中的链接不起作用,我无法将任何输入字段聚焦在正文上。
这仅发生在移动设备上:iOS或Android(或Chrome设备模拟)。
正如我所说,我可能不得不考虑另一种解决方案来关闭菜单,但这个问题对我来说似乎很奇怪,也许有人对它有一些想法。
这是一个简单的演示,正如我所说,它适用于桌面,但如果你在Chrome上使用F12启用设备模拟,你将无法对输入字段进行聚焦,除非你按住鼠标键:
<body ng-app="myApp" ng-click="showMenu = false">
<input type="text">
<button type="button" ng-click="showMenu = true; $event.stopPropagation();">Show menu</button>
<div class="menu" ng-show="showMenu"></div>
</body>
答案 0 :(得分:1)
我无法解释原始问题的真正原因。 似乎点击身体标签不是一个好主意 - 我认为它在某些方面偷走了焦点..
我已经整合了一个复杂的解决方案 - 但它适用于桌面和模拟移动 - 在Firefox中测试 -
并处理“点击+触摸”问题:
http://jsfiddle.net/s_light/L85g3grs/6/
在按钮上设置点击事件:
<button type="button" ng-click="menuShow($event)">
Show menu
</button>
并在控制器中添加处理:
app.controller('MainController',[
'$scope',
'$document',
'$timeout',
function($scope, $document, $timeout) {
// using deep value so that there are no scope/childscope issues
$scope.menu = {
visible: false,
};
// our internal clickPrevent helper
var menu_clickPrevent = false;
function menuHide(event) {
console.log("menuHide");
// set menu visibility
$scope.menu.visible = false;
// we need a apply here so the view gets updated.
$scope.$apply();
// deactivate handler
$document.off('click', menuHide);
}
$scope.menuShow = function(event) {
console.log("menuShow", event);
// check if we are already handling a click...
if( !menu_clickPrevent ) {
// stop default and propagation so our hide handler is not called immediate
event.preventDefault();
event.stopPropagation();
// make menu visible
$scope.menu.visible = true;
// prevent 'double click' bugs on some touch devices
menu_clickPrevent = true;
$timeout(function () {
menu_clickPrevent = false;
}, 100);
// activate document wide click-handler
$document.on('click', menuHide);
}
};
}
]);