Frage

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

War es hilfreich?

Lösung

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.

Lizenziert unter: CC-BY-SA mit Zuschreibung
Nicht verbunden mit StackOverflow
scroll top