我见过很多相关的问题,但我没有找到一个简单的代码示例,它通过 jquery 将参数传递回页面方法。
我已经浏览了 encosia.com 上的一些示例(感谢 Dave),但仍然无法使其正常工作。这是到目前为止的代码:
更新 - 添加了一些代码来传递参数,但它仍然无法正常工作。
测试.aspx:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title>test page</title>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
<script type="text/javascript">
$(document).ready(function() {
// Add the page method call as an onclick handler for the div.
$("#Result").click(function() {
var intxt = document.getElementById("<%= txtIn.ClientID %>").value;
var params = $.toJSON({ 'inStr': intxt });
$.ajax({
type: "POST",
url: "test.aspx/RunTest",
data: params,
contentType: "application/json; charset=utf-8",
dataType: "json",
success: function(msg) {
$("#Result").text(msg);
}
});
});
});
</script>
</head>
<body>
<form id="form1" runat="server">
<div id="Result">Click here</div>
<asp:TextBox ID="txtIn" runat="server"></asp:TextBox>
</form>
</body>
</html>
在 test.aspx.vb 中:
<WebMethod()> _
Public Shared Function RunTest(ByVal instr As String) As String
Return "this is your string: " + instr
End Function
更新:
永远不会调用上面的 RunTest 方法。但是,如果我也有:
<WebMethod()> _
Public Shared Function RunTest() As String
Return "no params here"
End Function
然后调用第二种方法。
我错过了什么?这是错误的方法吗?