为了让iOS 5上的Safari能够通过jQuery加载
AJAX请求,调试控制台会加载错误
Javascript: Error on Line 1 XMLHttpRequest cannot load http://<MYSERVERADDRESS>/WebMethods.asmx/Method. Cannot make any requests from null
我已经尝试Google的答案,以及搜索SO,但是我找不到解决方案.
这个问题只出现在iOS上.
任何帮助将不胜感激.
编辑
以下是所要求的代码.
jQuery(function ($) { $.ajax({ url: "/Peak.asmx/IsValidParticipant",data: { LanID: $("#LoginPageUsername").val(),Password: $("#loginPagePassword").val() },type: "POST",success: function (data) { if (data.response.result == "Success") { window.location = "/RSVP.aspx"; } else if (data.response.result == "Failure") { $(".erroRSSummaryBox").show().find("li").hide(); if (data.response.data.Reason == "Credentials") { $("#PortalAuthError").slideDown(); } else if (data.response.data.Reason == "Participant") { window.location = "/NoInvite.aspx"; } } },dataType: "json" }); });