Ajax学习-XMLHttpRequest创建,请…

前端之家收集整理的这篇文章主要介绍了Ajax学习-XMLHttpRequest创建,请…前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
在创建XMLHttpRequest中的时候, 不同浏览器有不同创建方法

01 $ ( document ). ready function () {
02 'input#login_button' click (
03 04 // alert("click");
05 var username = 'input#username' val ();
06 password 'input#password' 07 if ( == '' ) 08 alert "username can't be empty !" );
09 return ;
10 }
11 12 "password can't be empty !" 13 14 15 password . length <</span>6||password.length>16){
16 alert("password's length must be in 6 and 16!");
17
return;
18 }
19varxmlhttp;
20if(windowXMLHttpRequest 21=new();
22}else 23ActiveXObject"Microsoft.XMLHTTP" 24 25url"username="+username"&password="password 26// alert(url);
27xmlhttpopen"POST","login_result.PHP"true 28setRequestHeader"Content-type""application/x-www-form-urlencoded" 29onreadystatechangefunction() 30readyState==4&&status200 31 InforesponseText 32"true" 33 locationhref"index.PHP" 34 35 36 37 38 39send 40 41 );
42});

这是一个实例 =- = 简单明了~
原文链接:https://www.f2er.com/ajax/165167.html

猜你在找的Ajax相关文章