2
我創建一個簡單的Web方法從Java script..But訪問訪問一個WebMethod我不能無法從Javascript
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
<script src="Scripts/jquery-1.4.1.js" type="text/javascript"></script>
<script type="text/javascript">
$(document).ready(
function test() {
var x = PageMethods.MyMethod();
alert(x.toString());
})
</script>
</head>
<body>
<form id="form1" runat="server">
<div>
<asp:ScriptManager ID="ScriptManager1" runat="server" EnablePageMethods="true" EnablePartialRendering="true">
</asp:ScriptManager>
</div>
</form>
</body>
</html>
後面的代碼看起來像這樣
[WebMethod]
public static string MyMethod()
{
return "Hello";
}
變x是空的。 Iam無法弄清Iam錯過了什麼?有什麼幫助?由於提前
你在哪裏調用函數'test'? –
@Chris ..文檔準備就緒時自動調用 – Ananth