码迷,mamicode.com
首页 > 其他好文 > 详细

angular4-事件绑定

时间:2017-09-01 09:57:50      阅读:179      评论:0      收藏:0      [点我收藏+]

标签:skill   toggle   cto   pre   col   select   exp   cli   绑定   

事件绑定语法(可以通过 (事件名) 的语法,实现事件绑定)

<date-picker (dateChanged)="statement()"></date-picker>
等价于<date-picker on-dateChanged="statement()"></date-picker>
@Component({
    selector: sl-user,
    template: `
    <button (click)="toggleSkills()">
        {{ showSkills ? "隐藏技能" : "显示技能" }}
    </button>
    `
})
export class UserComponent {
    toggleSkills() {
        this.showSkills = !this.showSkills;
    }
}

 

angular4-事件绑定

标签:skill   toggle   cto   pre   col   select   exp   cli   绑定   

原文地址:http://www.cnblogs.com/avidya/p/7461323.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!