get和post方法最大的不同在于:1.get方法传值参数在url里面,而post参数放send里面2.post方法必须加上xmlHttp.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");下面实例可以看get方法xmlHttp.open("GET","for.php?text="+url,true); 在post里面表现为:xmlHttp.open("POST","for.php",t Read More
posted @ 2013-08-16 12:05 tinyphp Views(6232) Comments(0) Diggs(0) Edit