工程是一门科学,科学是严谨的。
摘要: 1 /// 2 /// 扩展类 3 /// 4 public static class Extend 5 { 6 /// 7 /// 扩展Join方法 8 /// 把数组分割 9 /// 截取最后一位10 /// 11 /// 12 /// 间隔符号13 /// 数组14 /// 15 public static string E_Join(this string [] value,string... 阅读全文
posted @ 2013-08-19 14:50 大圣的笑 阅读(313) 评论(0) 推荐(0) 编辑
摘要: 1 HTMLElement.prototype.__defineGetter__("currentStyle", function () {2 return this.ownerDocument.defaultView.getComputedStyle(this, null);3 });example:1 document.body.currentStyle['width'] 阅读全文
posted @ 2013-08-19 13:54 大圣的笑 阅读(2074) 评论(0) 推荐(0) 编辑