摘要:
在javascript中undefined和null几乎是没有区别的undefined==null;//true;区别:null是一个表示“无”的对象,转为数值为0;或者说没有对象,此处不应该有值;表示:(1)作为函数的参数,表示该函数的参数不是对象。 (2)作为对象原型链的终点。eg:Ob... 阅读全文
摘要:
*open(method,url,async)*send(string)//在使用get请求的时候,是没有主体的,所有的信息都会拼在url当中,所以使用send的时候括号里的string可以为空!如果是使用post请求,这个send就一定要填写参数,不然就没有什么意义。request.open("g... 阅读全文
摘要:
var nyc = { fullName: "New York City", mayor: "Bill de Blasio", population: 8000000, boroughs: 5};for(var i in nyc){ console.log(i);}输出://输出的是属性var ny... 阅读全文