我开始学习angular2 + typescript,并试图在点击删除按钮时找到像ng-really message,ng-really click (在Angularjs中)这样的东西。有人能向我提出最好的建议吗?并链接到文档。附注:我使用的是asp.net核心,.net核心
发布于 2016-11-10 20:32:31
您可以轻松地实现此功能,而不需要外部模块/指令:
import { Component } from '@angular/core';
@Component({
selector: 'app-root',
template: `
<a (click)="confirm('Are you ready?', takeaction)">Delete Me</a>
`
})
export class AppComponent {
confirm(msg, fn){
let result = confirm(msg)
if (result) {
fn()
}
}
takeaction(){
console.log('Taking Action!!')
}
}https://stackoverflow.com/questions/40523837
复制相似问题