我目前正在使用ScriptManager及其附带的任何内容,但我想在jQuery中管理我的AJAX,因为我即将开始处理一些非常重要的事情,我希望它能够像尽可能高效。
从它看来,jQuery AJAX无法到达服务器,原因我不知道。
除了标准的jQuery 1.9.1库,还有什么我需要使用的吗?
编辑:
HTML&&使用Javascript:
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="_Default.aspx.cs" Inherits="jQueryAjax._Default1" %>
<!DOCTYPE html>
<html>
<head>
<title>Calling a page method with jQuery</title>
<script src="http://code.jquery.com/jquery-1.9.1.js"></script>
<script type="text/javascript">
$(document).ready(function () {
// Add the page method call as an onclick handler for the div.
$("#Result").click(function () {
$.ajax({
type: "POST",
url: "_Default.aspx/GetDate",
data: "{}",
contentType: "application/json; charset=utf-8",
dataType: "json",
success: function (msg) {
// Replace the div's content with the page method's return.
$("#Result").text(msg.d);
}
});
});
});
</script>
</head>
<body>
<div id="Result">Click here for the time.</div>
</body>
</html>
&#13;
C#
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Services;
using System.Web.UI;
using System.Web.UI.WebControls;
namespace jQueryAjax
{
public partial class _Default1 : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
}
[WebMethod]
public static string GetDate()
{
return DateTime.Now.ToString();
}
}
}