摘要: function Person(name){ this.name = name;}Person.prototype = { say: function(){ alert('hi'); }, sayName: function(){ alert(this.name); }};fu... 阅读全文
posted @ 2015-03-21 20:20 yo胡yo 阅读(240) 评论(0) 推荐(0)
摘要: 添加时间戳给callbackId $.ajax({ type: "get", url: url, timeout: 6000, data: param, cache: false, dataType: "jsonp", jsonpCallback: "jsoncallback" + ... 阅读全文
posted @ 2015-03-21 18:17 yo胡yo 阅读(1129) 评论(0) 推荐(0)