asp.net利用Ajax和Jquery在前台向後台傳參數並傳回值的執行個體

來源:互聯網
上載者:User

1》前台

首先需要 Jquer的包

複製代碼 代碼如下:<script src="js/jquery-1.9.1.js" type="text/javascript"></script>

下面是 <script type="text/javascript">

$(function () {

$('#txtUserName').blur(function () {

var username = $(this).val();

$.ajax({

type: "post",

contentType: "application/json",//傳值的方式

url: "WebAjaxForMe.aspx/GetValueAjax",//WebAjaxForMe.aspx為目標檔案,GetValueAjax為目標檔案中的方法

data: "{username:'" + username + "'}",//username 為想問後台傳的參數(這裡的參數可有可無)

success: function (result) {

alert(result.d);//result.d為後台返回的參數

}

})

})

})

</script>

//這裡是參數的來源

<input id="txtUserName" type="text" />

2》後台

在後台首先要添加using System.Web.Services;的引用

複製代碼 代碼如下:[WebMethod]//方法前邊必須添加 [WebMethod]

public static string GetValueAjax(string username)//這個方法需要是靜態方法要用到關鍵字static

{

//在這裡可以對傳進來的參數進行任何操作

    return username;

}

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.