日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 前端技术 > javascript >内容正文

javascript

JS 原生 AJax

發布時間:2023/12/20 javascript 30 豆豆
生活随笔 收集整理的這篇文章主要介紹了 JS 原生 AJax 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

防止IE下不支持 Ajax

<button id="btn1">請求</button> <button id="btn2">請求</button><script>$("#btn2").click(function () {$.ajax({type: "Get",url: '/Home/ResponseAjax',data: { name: "super", age: 20 },success: function (res) {console.info(res);}})})$("#btn1").click(function () {ajax({url: "./ResponseAjax", //請求地址type: "GET", //請求方式data: { name: "super", age: 20 }, //請求參數dataType: "json",success: function (response, xml) {// 此處放成功后執行的代碼 console.info(response);console.info(xml);},fail: function (status) {// 此處放失敗后執行的代碼 }});})function ajax(options) {options = options || {};options.type = (options.type || "GET").toUpperCase();options.dataType = options.dataType || "json";var params = formatParams(options.data);//創建 - 非IE6 - 第一步if (window.XMLHttpRequest) {var xhr = new XMLHttpRequest();} else { //IE6及其以下版本瀏覽器var xhr = new ActiveXObject('Microsoft.XMLHTTP');}//接收 - 第三步xhr.onreadystatechange = function () {if (xhr.readyState == 4) {var status = xhr.status;if (status >= 200 && status < 300) {options.success && options.success(xhr.responseText, xhr.responseXML);} else {options.fail && options.fail(status);}}}//連接 和 發送 - 第二步if (options.type == "GET") {xhr.open("GET", options.url + "?" + params, true);xhr.send(null);} else if (options.type == "POST") {xhr.open("POST", options.url, true);//設置表單提交時的內容類型xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");xhr.send(params);}}//格式化參數 function formatParams(data) {var arr = [];for (var name in data) {arr.push(encodeURIComponent(name) + "=" + encodeURIComponent(data[name]));}arr.push(("v=" + Math.random()).replace(".", ""));return arr.join("&");} </script>

?

轉載于:https://www.cnblogs.com/Jacob-Wu/p/6632718.html

總結

以上是生活随笔為你收集整理的JS 原生 AJax的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。