摘要:
jquery Ajax $ajax({ Url:”test.html”, 发送请求的地址 Async:true; 异步操作 Cache:true, 可以从缓冲中加载 Type:”GET”, 请求方法 Datatype:”json”, 服务器返回数据类型 Sucess:function(data){ 阅读全文
摘要:
1事件继承 function ClassA(sColor) { this.color = sColor; this.sayColor = function () { alert(this.color); }; } function ClassB(sColor, sName) { ClassA.cal 阅读全文