jQuery封裝方法ajax調用獲得返回json資料方法

來源:互聯網
上載者:User

因為自個寫ajax實在是累,開發速度也慢,所以就整合了jQuery的類庫,同時很無恥的整進了開發項目中。0.0 以下是jQuery中$.ajax({data})方法返回json資料的方法

jQuery ajax方法獲得非同步資料目前在framework 3.5平台上引用System.Web.Script.Serialization;也可以獲得json資料。今天這裡寫的是基於framework 2.0平台上實現的。

//後台資料    protected void Page_Load(object sender, EventArgs e)    {        Response.Clear();        Response.Write("{status:'Y',message:'返回的資料狀態是Y'}");        Response.End();    }
<script type="text/javascript">  $("#btn").click(   function () {       $.ajax({           type: "get",           url: "ajax_sources.aspx",           cache: true,           success: excute       });   });   $("#div").ajaxSend(    function () {        $(this).html("正在發送請求.....");    });    function excute(data) {        eval("var data=".concat(data));//注意這裡。s        if (data.status == "Y") {            alert(data.message);        }    }</script>
<html xmlns="http://www.w3.org/1999/xhtml"><head runat="server">    <title></title></head><body>    <form id="form1" runat="server">    <div id="div">    </div>    <input id="btn" type="button" value="click" />    </form></body>
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.