首页 > Web开发 > 详细

JS学习总结(新手)

时间:2015-12-23 15:41:30      阅读:254      评论:0      收藏:0      [点我收藏+]

1. JS面向对象

http://www.cnblogs.com/JavascriptDream/p/5064976.html

a. Prototype 属性的理解

b. 遗传继承函数

function Extend(Children,Parent){
    for(var p in Parent){
        if(typeof Children[p] == "undefined"){
            Children[p] = Parent[p];
        }
    }
}

2. JS模板引擎

http://www.cnblogs.com/kuikui/archive/2013/05/20/3087863.html

JS学习总结(新手)

原文:http://www.cnblogs.com/yanchuan/p/5069865.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!