使用jQuery的Ajax在Firefox中运行并在Chrome中出现404错误

时间:2011-07-21 15:46:09

标签: jquery ajax google-chrome

我有这个ajax请求:

$.ajax({
    dataType: 'json',
    error: function(result) {
        alert('Error: ' + result.status);
    },
    type: 'GET',
    data: "",
    success: function(data) {
        //do some stuff
    },
    url: 'info/' + hash + '.json'
});

虽然在Firefox中效果很好,但在Chrome中我遇到了404错误,我该怎样修复它才能在Chrome中运行?

1 个答案:

答案 0 :(得分:1)

尝试使用完整的网址 -

url: 'http://yoursite.com/YourDirectorys/info/' + hash + '.json

或无相对网址

url: '/YourDirectorys/info/' + hash + '.json