标签:style blog color io 使用 ar for sp div
var _json={}; _json.push=function(o){ if(typeof(o)==‘object‘) for(var p in o) this[p]=o[p]; }; // 使用方法 : var a = {"1":"a"}; var b = {"2":"b"}; _json.push(a); _json.push(a);
$.isEmptyObject(_json) // 使用方法: var a = {},b={"a":"1"}; $.isEmptyObject(a) // true $.isEmptyObject(b) // false
Array.prototype.contains = function(obj) { var i = this.length; while (i--) { if (this[i] === obj) { return true; } } return false; } // 使用方法 var a = [a,b,c,d]; a.contains(e) // false
a.contains(b) // true
// 数组的排序比较函数 此为从小到大 var compare = function (x, y) { if (x < y) { return -1; } else if (x > y) { return 1; } else { return 0; } } // 使用方法 var a = [2,1,43,12,8]; // 原始 a.sort() // 1,12,2,43,8 // 修改后 a.sort(compare) // 1,2,8,12,43
标签:style blog color io 使用 ar for sp div
原文地址:http://www.cnblogs.com/wsun/p/4018947.html