ASP.NET中Ajax怎么使用

a52655 8 0 PDF 2021-02-01 16:02:36

在ASP.NET中应用Ajax的格式如下: 前台代码(用JQuery库) $.ajax({ type: POST, async: true, url: ../Ajax/ajax.ashx, dataType: html, data: null success: function (result) { //do successful sth }, error: function (XMLHttpRequest, textStaus, errThrown) { //do error sth } }) Ajax(一般性处理程序)中

用户评论
请输入评论内容
评分:
暂无评论