摘要:
JQuery中的ajax方法: 参数解释:(主要就用到url、type、data、dataType、success、error等,其他的看需求而定) $.ajax({ url:" ", //请求的地址,类型为string type:" ", //请求方式,类型为string,两种“get”或者“po 阅读全文
摘要:
this的指向在函数定义的时候是确定不了的,只有函数执行的时候才能确定this到底指向谁,实际上this的最终指向的是那个调用它的对象。 例子1: function cat(){ var user = "I'm cat"; console.log(this.user); //undefined co 阅读全文