<script>
function loadDoc(file,async=true){
if(window.XMLHttpRequest){ // code for IE7+, Firefox, Chrome, Opera, Safari
xmlhttp=new XMLHttpRequest();
}else{ // code for IE6, IE5
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
}
if(async === true){
xmlhttp.onreadystatechange = function(){
if(xmlhttp.readyState < 4){
// 加載中
}else if (xmlhttp.readyState == 4 && xmlhttp.status == 200){
// 成功
xmlDoc=xmlhttp.responseText;
return xmlDoc
}else{
// 失敗
xmlhttp.abort()
return
}
}
}
xmlhttp.open("POST",file,async);
xmlhttp.setRequestHeader("Content-type", "application/json");
var data = {
name:'lee'
}
var json = JSON.stringify(data)
xmlhttp.send(json);
if(async === false){
xmlDoc=xmlhttp.responseText;
return xmlDoc
}
}
var data = loadDoc('http://localhost/test.php',false)
console.log(data)
</script>
<?php
header('access-control-allow-origin:*');
header('Access-Control-Allow-Headers:WWW-Authenticate,Authorization,Set-Cookie,X-Requested-With, Accept, Accept-Version, Content-Length, Content-MD5, Content-Type, Date, X-Api-Version');
$json = file_get_contents('php://input');
echo $json;
分享名稱:javascript與php使用json傳遞數(shù)據(jù)
本文URL:http://jinyejixie.com/article0/joghoo.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供關(guān)鍵詞優(yōu)化、App開發(fā)、電子商務(wù)、做網(wǎng)站、標(biāo)簽優(yōu)化、動態(tài)網(wǎng)站
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)