JQuery Ajax请求不起作用

时间:2013-12-09 16:59:05

标签: php jquery ajax

我遇到Ajax请求问题。我使用了很多Ajax并且从来没有遇到过问题但是在这种情况下它只是不起作用而且我现在正在寻找它并且找不到我的错误。

如果你去:http://sites.ondalocal.com.br/onodera/ 然后使用“Agendar agora!”按钮提交表单。

通过clickung执行以下代码:

$.ajax({
    type : 'POST',
    url : 'http://186.202.184.93/vhosts/sites/wp-content/themes/Onodera_test/onodera.php',
    dataType : 'json',
    data: {
        site : "1", 
        field : "3" 
    },
    success : function(data){
        alert("ok");
    },
    error: function() {
      alert("error");
    }
});

被调用的php页面不包含错误。但是永远不会调用成功函数,它总是会出错。

有人可以快点看看吗?

1 个答案:

答案 0 :(得分:2)

检查控制台。

XMLHttpRequest cannot load http://186.202.184.93/vhosts/sites/wp-content/themes/Onodera_test/onodera.php. No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin 'http://sites.ondalocal.com.br' is therefore not allowed access. 

Same Origin Policy