我正在尝试发出类似这样的帖子请求。以下行调用控制器操作
$.getJSON(GetPath('/Products/Search'), param, function (data) {
// do some thing with data
}
GetPath
给我一个有效的网址
function GetPath( url ) {
var protocol = "http://";
if ('@ApplicationInstance.Application["IsHTTPS"]' == "TRUE")
protocol = "https://";
if ('@HttpContext.Current.Request.ApplicationPath' == "/")
return protocol + window.location.host + url;
else
return protocolwindow.location.host+'@HttpContext.Current.Request.ApplicationPath' + url;
}
这在 chrome 和 safari 中都可以正常工作。
但是在 IE10 中在控制台中收到错误消息
script1014:无效字符
这与Jquery版本有关吗?