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

angular.extend

时间:2015-10-16 17:09:49      阅读:147      评论:0      收藏:0      [点我收藏+]

标签:

function f1() {}
var f2 = angular.extend(f1, {
    active: false,
    toggle: function() {
        this.active = !this.active
    }
})
console.log(f1, f1.active)
console.log(f2, f2.active)
f1.toggle()
console.log(f1, f1.active)
console.log(f2, f2.active)
var o1 = {
    a: ‘a‘
}
var o2 = angular.extend(o1, {
    b: ‘b‘
})
console.log(o1, o2)

 

angular.extend

标签:

原文地址:http://www.cnblogs.com/jzm17173/p/4885650.html

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