Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
您应该将$event参数传递给 onclick 函数和执行e.preventDefault()方法;
$event
e.preventDefault()
<a ng-click="clickHandler($event)" href="/home" >home</a>
在控制器中:
$scope.clickHandler = function(e){ e.preventDefault(); }
例子:
http://plnkr.co/edit/sKHST3GkRENtxptxr0mK?p=preview