हाँ कोणीय 1.x on-mouseover
की ng-Mouseover
तरह कोणीय 2 में है, इसलिए आपको यह लिखना होगा: -
<div on-mouseover='over()' style="height:100px; width:100px; background:#e2e2e2">hello mouseover</div>
over(){
console.log("Mouseover called");
}
टिप्पणी में @Gunter सुझाव के रूप में on-mouseover
हम इस का उपयोग कर सकते हैं वैकल्पिक है। कुछ लोग ऑन-प्रीफ़िक्स विकल्प को पसंद करते हैं, जिसे विहित रूप में जाना जाता है।
अपडेट करें
HTML कोड -
<div (mouseover)='over()' (mouseout)='out()' style="height:100px; width:100px; background:#e2e2e2">hello mouseover</div>
नियंत्रक / .TS कोड -
import { Component } from '@angular/core';
@Component({
selector: 'my-app',
templateUrl: './app.component.html',
styleUrls: [ './app.component.css' ]
})
export class AppComponent {
name = 'Angular';
over(){
console.log("Mouseover called");
}
out(){
console.log("Mouseout called");
}
}
काम करने का उदाहरण
कुछ अन्य माउस आयोजनों का उपयोग कोणीय में किया जा सकता है -
(mouseenter)="myMethod()"
(mousedown)="myMethod()"
(mouseup)="myMethod()"