我有一个Api来获取HTML内容,就像这样
" http://localhost/somefolder/coneten#/home"
$.ajax({
url:"http://localhost/somefolder/coneten#/home",
dataType:"json",
error:function(xhr, status, errorThrown) {
console.log();
},
success:function(json) {
console.log();
}
});
当我在IE 10浏览器中运行我的应用程序时,由于IE将我的api转换为
,我收到404错误" http://localhost/somefolder/coneten%23/home"(#into%23)
所以它没有击中服务器。 但在所有其他浏览器中,它正在工作,网址没有转换。 请有人帮我解决这个问题。