Domanda

i got the following structure:

<div directiveA>
    <a href="" directiveB>
</div>

Both directives got an onclick event. The problem is, that if a click on directiveB is performed, a click on directiveA is triggered as well.

How can i prevent this?

Thanks

È stato utile?

Soluzione

In the directiveB on the click directive do this this

ng-click=doSomething();$event.stopPropagation()

There is an $event object available for all DOM events supported by angular.

Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top