對AJAX的理解
阿新 • • 發佈:2019-01-05
作為一個菜鳥,我總結下自己對ajax的理解
ajax可以完成非同步請求。即在不重新載入頁面的情況下,可以完成對網頁某個部分的更新
用原生js也可以寫ajax,很麻煩,我也不會。以後如果要學習可以參考:https://www.cnblogs.com/cythia/p/6978323.html
在自己的練習中,使用過 jQuery的ajax方法向後臺傳值,現在記錄下來
function getcode(){ var userPhone=document.getElementById("userphone").value; $.get({ type :"GET", //提交方式 dataType:"jsonp", jsonp:"callback", jsonpCallback:"success_jsonp", data:{"userphone":userPhone},//冒號前面是引數名稱,後是引數的值, 傳送多個引數用 , 號隔開 url : "http://localhost:8080/StudentManager/identifyingCode",//路徑 success : function(result) {//返回資料根據結果進行相應的處理 console.log("+++"); //控制檯列印+++ } }); }
附上一篇關於ajax方法的詳解:https://www.cnblogs.com/tylerdonet/p/3520862.html