在没有jQuery的情况下通过AJAX调用WebMethod

时间:2011-10-17 07:45:38

标签: javascript ajax webmethod

我有以下WebMethod

[WebMethod]
        public static string InnerGetURL(string accessCode)
        {
            string newURL;
            newURL = (string)HttpContext.Current.Cache[accessCode + "l"];
            return newURL;
        }

是否可以通过AJAX BUT从JavaScript调用WebMethod而不使用jQuery。我已经设法使用jQuery创建所需的功能,但现在是时候切换到纯JavaScript和AJAX了。

感谢您的帮助!