国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 開發(fā) > AJAX > 正文

JavaScript原生xmlHttp與jquery的ajax方法json數(shù)據(jù)格式實例

2024-09-01 08:33:35
字體:
供稿:網(wǎng)友
這篇文章主要介紹了JavaScript原生xmlHttp與jquery的ajax方法json數(shù)據(jù)格式實例的相關(guān)資料,需要的朋友可以參考下
 

javascript版本的ajax發(fā)送請求

(1)、創(chuàng)建XMLHttpRequest對象,這個對象就是ajax請求的核心,是ajax請求和響應(yīng)的信息載體,單是不同瀏覽器創(chuàng)建方式不同

(2)、請求路徑

(3)、使用open方法綁定發(fā)送請求

(4)、使用send() 方法發(fā)送請求

(5)、獲取服務(wù)器返回的字符串   xmlhttpRequest.responseText;

(6)、獲取服務(wù)端返回的值,以xml對象的形式存儲  xmlhttpRequest.responseXML;

(7)、使用W3C DOM節(jié)點樹方法和屬性對該XML文檔對象進(jìn)行檢查和解析。

序言:

     近來隨著項目的上線實施,稍微有點空閑,閑暇之時偶然發(fā)現(xiàn)之前寫的關(guān)于javascript原生xmlHttp ajax方法以及后來jquery插件ajax方法,于是就行了一些總結(jié),因時間原因,并未在所有瀏覽器上進(jìn)行測試,目前測試的IE8,9,10,Google Chrome,Mozilla Firefox,Opera常用幾款,如大家在進(jìn)行驗證測試發(fā)現(xiàn)有問題,請及時反饋與我,謝謝大家。

言歸正傳,直接上代碼:

 前端代碼 

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head>  <title>Ajax練習(xí)</title>  <script src="/Scripts/jquery-1.4.1.min.js" type="text/javascript"></script>  <style type="text/css">  label{width:50px;display:inline-block;}  </style></head><body><div id="contentDiv">  <h2>html5表單元素</h2>  <label>E-mail</label><input type="email" name="UserEmail" id="UserEmail" value="251608027@qq.com" /><br />  <label>URL:</label><input type="url" name="UserURL" id="UserURL" value="http://www.baidu.com" /><br />  <label>Number:</label><input type="number" name="UserNumber" id="UserNumber" min="1" max="100" value="87" /><br />  <label>Range:</label><input type="range" name="UserRange" min="1" max="100" value="78" /><br />  <label>Date:</label><input type="date" name="UserDate" id="UserDate" value="2015-12-01" /><br />  <label>Search:</label><input type="search" name="UserSearch" id="UserSearch" value="search" /><br />  <label id="lblMsg" style="color:Red; width:100%;"></label><br />  <input type="button" id="btnXmlHttp" value="提 交" onclick="return xmlPost();" />  <input type="button" id="btnAjax" value="Ajax提 交" onclick="return Ajax();" />  <input type="button" id="btnPost" value="Post提 交" onclick="return Post();" />  <input type="button" id="btnGet" value="Get提 交" onclick="return Get();" />  <input type="button" id="btnGetJSON" value="GetJSON提 交" onclick="return GetJSON();" />  <input type="button" id="btnCustom" value="Custom提 交" onclick="return Custom();" />  <br /><label id="lblAD" style="color:Red; width:100%;">.NET技術(shù)交流群:70895254,歡迎大家</label>  <script type="text/javascript">    //基礎(chǔ)數(shù)據(jù)    var jsonData = {      UserEmail: $("#UserEmail").val(),      UserURL: $("#UserURL").val(),      UserNumber: $("#UserNumber").val(),      UserRange: $("#UserRange").val(),      UserDate: $("#UserDate").val(),      UserSearch: $("#UserSearch").val()    };    //統(tǒng)一返回結(jié)果處理    function Data(data, type) {      if (data && data.length > 0) {        var lblMsg = "";        for (i = 0; i < data.length; i++) {          for (var j in data[i]) {            lblMsg += j + ":" + data[i][j];            if (j != "Name" && j != "UserSearch") { lblMsg += "," }          }          if (i != data.length) { lblMsg += ";"; }        }        $("#lblMsg").html(type + "請求成功,返回結(jié)果:" + lblMsg);      }    }  </script>  <script type="text/javascript">    //javascript 原生ajax方法    function createXMLHttp() {      var XmlHttp;      if (window.ActiveXObject) {        var arr = ["MSXML2.XMLHttp.6.0", "MSXML2.XMLHttp.5.0", "MSXML2.XMLHttp.4.0", "MSXML2.XMLHttp.3.0", "MSXML2.XMLHttp", "Microsoft.XMLHttp"];        for (var i = 0; i < arr.length; i++) {          try {            XmlHttp = new ActiveXObject(arr[i]);            return XmlHttp;          }          catch (error) { }        }      }      else {        try {          XmlHttp = new XMLHttpRequest();          return XmlHttp;        }        catch (otherError) { }      }    }        function xmlPost() {      var xmlHttp = createXMLHttp();      var queryStr = "Ajax_Type=Email&jsonData=" + JSON.stringify(jsonData);      var url = "/Handler/AjaxHandlerHelper.ashx?no.=" + Math.random();      xmlHttp.open('Post', url, true);      xmlHttp.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");      xmlHttp.send(queryStr);      xmlHttp.onreadystatechange = function () {        if (xmlHttp.readyState == 4 && xmlHttp.status == 200) {          var data = eval(xmlHttp.responseText);          Data(data, "javascript原生xmlHttp");        }      }    }  </script>  <script type="text/javascript">    //jquery $.ajax方法    function Ajax() {      $.ajax({        url: "/Handler/AjaxHandlerHelper.ashx?no.=" + Math.random(),        type: "Post",        async: false,        data: {          Ajax_Type: "Email",          jsonData: JSON.stringify(jsonData)        },        dataType: "json",        beforeSend: function () { //發(fā)送請求前           $("#btnPost").attr('disabled', "true");        },        complete: function () { //發(fā)送請求完成后          $("#btnPost").removeAttr("disabled");        },        error: function (XMLHttpRequest, textStatus, errorThrown) {          alert("error!" + errorThrown);          //alert("請求錯誤,請重試!");        },        success: function (data) {          Data(data, "Jquery $.ajax");        }      });    }    //jquery $.post方法    function Post() {      $.post("/Handler/AjaxHandlerHelper.ashx?no.=" + Math.random(),        {          Ajax_Type: "Email",          jsonData: JSON.stringify(jsonData)        },        function (data) {          Data(data, "Jquery $.post");        }      );      }    //jquery $.getJSON方法    function GetJSON() {      $.getJSON("/Handler/AjaxHandlerHelper.ashx?no.=" + Math.random(),        {          Ajax_Type: "Email",          jsonData: JSON.stringify(jsonData)        },        function (data) {          Data(data, "Jquery $.getJSON");        }      );      }    //jquery $.get方法    function Get() {      $.get("/Handler/AjaxHandlerHelper.ashx?no.=" + Math.random(),        {          Ajax_Type: "Email",          jsonData: JSON.stringify(jsonData)        },        function (data) {          Data(data, "Jquery $.get");        }      );    }  </script>  <script type="text/javascript">    //javascript原生腳本自定義jquery $.ajax方法    var CustomAjax = function (custom) {      // 初始化      var type = custom.type; //type參數(shù),可選            var url = custom.url; //url參數(shù),必填            var data = custom.data; //data參數(shù)可選,只有在post請求時需要              var dataType = custom.dataType; //datatype參數(shù)可選            var success = custom.success; //回調(diào)函數(shù)可選      var beforeSend = custom.beforeSend; //回調(diào)函數(shù)可選      var complete = custom.complete; //回調(diào)函數(shù)可選      var error = custom.error; //回調(diào)函數(shù)可選      if (type == null) {//type參數(shù)可選,默認(rèn)為get        type = "get";      }      if (dataType == null) {//dataType參數(shù)可選,默認(rèn)為text        dataType = "text";      }      var xmlHttp = createXMLHttp(); // 創(chuàng)建ajax引擎對象      xmlHttp.open(type, url, true); // 打開      // 發(fā)送      if (type == "GET" || type == "get" || type == "Get") {//大小寫        xmlHttp.send(null);      }      else if (type == "POST" || type == "post" || type == "Post") {        xmlHttp.setRequestHeader("content-type", "application/x-www-form-urlencoded");        xmlHttp.send(data);      }      xmlHttp.onreadystatechange = function () {        if (xmlHttp.readyState == 4 && xmlHttp.status == 200) {          if (dataType == "text" || dataType == "TEXT") {            if (success != null) {              //普通文本              success(xmlHttp.responseText);            }          } else if (dataType == "xml" || dataType == "XML") {            if (success != null) {              //接收xml文檔                success(xmlHttp.responseXML);            }          } else if (dataType == "json" || dataType == "JSON") {            if (success != null) {              //將json字符串轉(zhuǎn)換為js對象               success(eval("(" + xmlHttp.responseText + ")"));            }          }        }      };    };    //自定義方法    function Custom() {      CustomAjax({        type: "Post",        url: "/Handler/AjaxHandlerHelper.ashx?no.=" + Math.random(),        data: "Ajax_Type=Email&jsonData=" + JSON.stringify(jsonData),        dataType: "json",        success: function (data) {          Data(data, "Custom自定義");        }      });    }  </script></div></body></html> 

.ashx后端代碼

using System;using System.Collections.Generic;using System.Linq;using System.Web;using System.Web.Script.Serialization;using System.Runtime.Serialization.Json;using System.IO;using System.Text;namespace WebHTML5.Handler{  /// <summary>  /// AjaxHandlerHelper 的摘要說明  /// </summary>  public class AjaxHandlerHelper : IHttpHandler  {    public void ProcessRequest(HttpContext context)    {      context.Response.ContentType = "application/json";      //context.Response.Charset = "utf-8";      var Ajax_Type = context.Request.QueryString["Ajax_Type"] == null ?        context.Request.Form["Ajax_Type"] : context.Request.QueryString["Ajax_Type"];      switch (Ajax_Type)       {        case "Email":          context.Response.Write(PostEmail(context));          break;        default:          context.Response.Write("[{/"Age/":28,/"Name/":/"張鵬飛/"}]");          break;      }    }    public static string PostEmail(HttpContext context)    {      string semail = string.Empty;      if (context.Request.HttpMethod == "GET")      {        semail = "[" + context.Request.QueryString["jsonData"] + "]";      }      else      {        semail = "[" + context.Request.Form["jsonData"] + "]";      }      return semail;    }    /// <summary>    /// JSON序列化    /// </summary>    public static string JsonSerializer<T>(T t)    {      DataContractJsonSerializer ser = new DataContractJsonSerializer(typeof(T));      MemoryStream ms = new MemoryStream();      ser.WriteObject(ms, t);      string jsonString = Encoding.UTF8.GetString(ms.ToArray());      ms.Close();      return jsonString;    }    /// <summary>    /// JSON反序列化    /// </summary>    public static T JsonDeserialize<T>(string jsonString)    {      DataContractJsonSerializer ser = new DataContractJsonSerializer(typeof(T));      MemoryStream ms = new MemoryStream(Encoding.UTF8.GetBytes(jsonString));      T obj = (T)ser.ReadObject(ms);      return obj;    }    public bool IsReusable    {      get      {        return false;      }    }  }} 

Jquery 方法擴展

  關(guān)于Jquery的方法擴展大家自行g(shù)oogle或百度;

結(jié)束語

說明一下情況:案例中出現(xiàn)的html5 range標(biāo)簽的取值問題,寫的不對,大家不要在意這些,關(guān)于range標(biāo)簽如何取值大家自行g(shù)oogle或百度;



注:相關(guān)教程知識閱讀請移步到JavaScript/Ajax教程頻道。
發(fā)表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發(fā)表
主站蜘蛛池模板: 松溪县| 东兰县| 北川| 冀州市| 鄂托克旗| 天长市| 丰镇市| 台北市| 仙游县| 新源县| 三江| 喀喇| 浦江县| 罗江县| 兰考县| 南汇区| 定陶县| 石林| 温泉县| 阳朔县| 乳源| 中牟县| 凤山县| 昌都县| 宽城| 哈巴河县| 黄骅市| 阿巴嘎旗| 昌图县| 大城县| 满洲里市| SHOW| 双柏县| 宾川县| 宁津县| 长白| 拉孜县| 伊金霍洛旗| 江永县| 利川市| 商丘市|