码迷,mamicode.com
首页 > Web开发 > 详细

经典JS

时间:2016-08-29 08:00:48      阅读:220      评论:0      收藏:0      [点我收藏+]

标签:

//用apply把document当作this传入getId函数,帮助“修正”this;
document.getElementById = (function (func) {
    return function () {
        return func.apply(document, arguments);
    }
})(document.getElementById);

//调用
var getId = document.getElementById;
var div = getId(‘div2‘);


//函数判断

var Type = {};

for (var i = 0, type; type = [‘String‘, ‘Array‘, ‘Number‘][i++];) {

    (function (type) {
        Type[‘is‘ + type] = function (obj) {
            return Object.prototype.toString.call(obj) === ‘[object ‘ + type + ‘]‘;
        }
    })(type);

};

 

经典JS

标签:

原文地址:http://www.cnblogs.com/jasonoiu/p/Classic-JS.html

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