摘要: <script type="text/ecmascript" language="ecmascript"> var targetWeb; function runCode() { // 获取当前 var clientContext = new SP.ClientContext.get_current(); //SP.ClientContext(‘url’)... 阅读全文
posted @ 2012-06-05 17:36 高捍得 阅读(557) 评论(0) 推荐(0) 编辑
摘要: ECMAScript 中描述了原型链的概念,并将原型链作为实现继承的主要方法. 其基本思想就是 利用原型让一个引用类型 继承另一个引用类型的属性和方法. 实现原型链有一种基本模式,大致如下: function SuperType() { //定义父类 this.property = true; } SuperType.prototype.G... 阅读全文
posted @ 2012-06-05 10:01 高捍得 阅读(580) 评论(0) 推荐(0) 编辑