微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

基于js原生和ajax的get和post方法以及jsonp的原生写法实例

<div class="jb51code">
<pre class="brush:xhtml;">
login.onclick = function(){
var xhr = new XMLHttpRequest();
xhr.open("get","http://localhost/ajax2/test2.php?username="+username.value+"&pwd="+pwd2.value,true);
xhr.send();
xhr.onreadystatechange = function(){
if (xhr.readyState == 4) {
if (xhr.status>=200 && xhr.status<300) {
alert(xhr.responseText);
};
};
}
}

ajax方法

rush:xhtml;"> btn.onclick = function(){ ajax( "GET","http://localhost/ajax2/my02.PHP",{xingming:xingming.value,pwd:pwd.value},function(data){ console.log(data); },function(errCode){ console.log(errCode); } )

post方法传参

它与个get方法的区别:

01 安全型。post更安全。

02 速度. get的速度快

03 数量级。 post的数量级更大一些.

具体实现:

= 200 && xhr.status < 300 ) { alert(xhr.responseText); }; }; }

原生jsonp 方法

rush:xhtml;"> var sc = document.createElement("script"); sc.type = "text/javascript"; document.body.appendChild(sc); sc.src = "http://localhost/ajax2/jsonp.PHP?cb=myCallBack";

function myCallBack(data){
console.log(data);
}

以上这篇基于js原生和ajax的get和post方法以及jsonp的原生写法实例就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持编程之家。

原文地址:https://www.jb51.cc/ajax/35807.html

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐