摘要: jquery Ajax $ajax({ Url:”test.html”, 发送请求的地址 Async:true; 异步操作 Cache:true, 可以从缓冲中加载 Type:”GET”, 请求方法 Datatype:”json”, 服务器返回数据类型 Sucess:function(data){ 阅读全文
posted @ 2017-04-13 19:56 谢舒心 阅读(386) 评论(0) 推荐(0) 编辑
摘要: 1事件继承 function ClassA(sColor) { this.color = sColor; this.sayColor = function () { alert(this.color); }; } function ClassB(sColor, sName) { ClassA.cal 阅读全文
posted @ 2017-04-13 19:54 谢舒心 阅读(1219) 评论(0) 推荐(1) 编辑