我目前是一个asp.net的家伙,但现在必须做一些jsp工作。我知道在asp.net中,你可以定义一个带有<code>〔WebMethod〕</code>属性的公共静态方法,例如。
[WebMethod]
public static string GetIt(string code)
{
return GetSomething(code);
}
然后,我可以在jquery中调用这个方法
$.ajax({
type: "POST",
url: "PageName.aspx/GetIt",
data: "{ code : +$("#code").val()+" }",
contentType: "application/json; charset=utf-8",
dataType: "json",
success: function(msg) {
// Do something interesting here.
}
});
有人能告诉我如何使用jsp吗?