csharp Ajax示例
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了csharp Ajax示例相关的知识,希望对你有一定的参考价值。
$(document).ready(function () {
$("body").on('change', '[id *= "_ServiceId"]', function() {
var deger = $(this).val();
console.log(deger);
//debugger;
$.ajax({
type: "Post",
// url: '@Url.Action("GetServiceMethods", "IntegrationManagement")' ,
data: "{service:'" + deger + "'}",
contentType: "application/json; charset=utf-8",
dataType: "html",
success: function (result) {
console.log(result);
}
});
});
});
以上是关于csharp Ajax示例的主要内容,如果未能解决你的问题,请参考以下文章
csharp AJAX GET MVC
csharp Ajax搜索控制器
csharp Ajax.BeginForm
csharp ajax c-sharp-likes
csharp 用于ASP.NET MVC的Ajax ActionFilter
csharp C#_Ajax_Responsing_In_WebForms.cs