I'm trying to pass the DOM element to Aurelia function, but it ain't work. Just to notice that this element is not in the 'repeat.for' statement.
I have something like this, which obviously is not correct :
<span click.trigger="passDom(d)">Pass Dom Element</span>
export class Test {
passDom(d) {
console.log(d);
}
}
I try using $self, but not working as well.
Use $event.target
like this:
<span click.trigger="passDom($event.target)">Pass Dom Element</span>
You can read more about DOM events in Aurelia Hub - DOM Events.
Use the special $event property to access the DOM event in your binding expression.
Alternatively, you can create reference to DOM event and use it from view model:
<span click.trigger="passDom()" ref="myElement">Pass Dom Element</span>
// in view model
export class Test {
passDom() {
console.log(this.myElement);
}
}
Also available in Aurelia Hub - Referencing Elements.
Use the
ref
binding command to create a reference to a DOM element. Theref
command's most basic syntax isref="expression"
. When the view is data-bound the specified expression will be assigned the DOM element.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With