我试图“ stopPropagation”以防止单击li内的元素(链接)时关闭Twitter Bootstrap导航栏下拉菜单。使用这种方法似乎是常见的解决方案。
在Angular中,看起来像指令是执行此操作的地方?所以我有:
// do not close dropdown on click
directives.directive('stopPropagation', function () {
return {
link:function (elm) {
$(elm).click(function (event) {
event.stopPropagation();
});
}
};
});
...但是该方法不属于元素:
TypeError: Object [object Object] has no method 'stopPropagation'
我把指令与
<li ng-repeat="foo in bar">
<div>
{{foo.text}}<a stop-propagation ng-click="doThing($index)">clickme</a>
</div>
</li>
有什么建议么?