JS與Ajax Get和Post在使用上的區(qū)別實例詳解
來源:易賢網(wǎng) 閱讀:813 次 日期:2016-06-18 11:56:06
溫馨提示:易賢網(wǎng)小編為您整理了“JS與Ajax Get和Post在使用上的區(qū)別實例詳解”,方便廣大網(wǎng)友查閱!

這篇文章主要介紹了JS與Ajax Get和Post在使用上的區(qū)別實例詳解的相關(guān)資料,非常不錯具有參考借鑒價值,需要的朋友可以參考下

get和post方法最大的不同在于:

1.get方法傳值參數(shù)在url里面,而post參數(shù)放send里面

2.post方法必須加上

xmlHttp.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");

下面實例可以看get方法

xmlHttp.open("GET","for.php?text="+url,true);

在post里面表現(xiàn)為:

xmlHttp.open("POST","for.php",true);

xmlHttp.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");

POST和GET方法共用文件:

index.php

<script src="a.js" type="text/javascript"></script>

<a href="#" onClick="funphp100('o')">o</a>

<a href="#" onClick="funphp100('t')">t</a>

<a href="#" onClick="funphp100('x')">x</a>

<div id="php100"></div>

POST方法文件:

a.js

var xmlHttp;

function S_xmlhttprequest(){

if(window.ActiveXObject){

xmlHttp=new ActiveXObject('Microsoft.XMLHTTP');

}else if(window.XMLHttpRequest){

xmlHttp=new XMLHttpRequest();

}

}

function funphp100(n){

var data = "text=" +n;  //多個參數(shù)的,往后加

S_xmlhttprequest();

xmlHttp.open("POST","for.php",true);

xmlHttp.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");

xmlHttp.onreadystatechange=byphp;

xmlHttp.send(data);

}

function byphp(){

var byphp100=xmlHttp.responseText;

document.getElementById("php100").innerHTML=byphp100;

}

for.php:

<?

echo $_POST['text'];

?>

GET方法文件:

a.js:

var xmlHttp;

function S_xmlhttprequest(){

if(window.ActiveXObject){

xmlHttp=new ActiveXObject('Microsoft.XMLHTTP');

}else if(window.XMLHttpRequest){

xmlHttp=new XMLHttpRequest();

}

}

function funphp100(url){

S_xmlhttprequest();

xmlHttp.open("GET","for.php?text="+url,true);

xmlHttp.onreadystatechange=byphp;

xmlHttp.send(null);

}

function byphp(){

var byphp100=xmlHttp.responseText;

document.getElementById("php100").innerHTML=byphp100;

}

for.php:

<?

echo $_GET['text'];

?>

以上所述是小編給大家介紹的JS與Ajax Get和Post在使用上的區(qū)別實例詳解的相關(guān)知識,希望對大家有所幫助

更多信息請查看網(wǎng)絡(luò)編程
易賢網(wǎng)手機網(wǎng)站地址:JS與Ajax Get和Post在使用上的區(qū)別實例詳解

2025國考·省考課程試聽報名

  • 報班類型
  • 姓名
  • 手機號
  • 驗證碼
關(guān)于我們 | 聯(lián)系我們 | 人才招聘 | 網(wǎng)站聲明 | 網(wǎng)站幫助 | 非正式的簡要咨詢 | 簡要咨詢須知 | 新媒體/短視頻平臺 | 手機站點 | 投訴建議
工業(yè)和信息化部備案號:滇ICP備2023014141號-1 云南省教育廳備案號:云教ICP備0901021 滇公網(wǎng)安備53010202001879號 人力資源服務(wù)許可證:(云)人服證字(2023)第0102001523號
聯(lián)系電話:0871-65099533/13759567129 獲取招聘考試信息及咨詢關(guān)注公眾號:hfpxwx
咨詢QQ:1093837350(9:00—18:00)版權(quán)所有:易賢網(wǎng)