从url获取ajax调用

时间:2013-08-30 16:54:47

标签: php jquery ajax

所以当我把文件名放在ex:

时,我的ajax请求工作正常
var security = function(){
    var link = $('#chosen').attr('href');
        $.get('func.php',function(result)         {
            if (result > 75 && result % 5 === 0){
                    $('#chosen').attr("href", link);


            }else{
             $('#chosen').attr('href','https://www.google.com');

            }
        });
        $("#chosen").click(function(){
            $.get('func2.php',function(results){
            if (results === results){
                location.reload();
            }
        });
        });
        $("#chosen").click(function(){
            $.get('func3.php',function(results){
            if (results === results){

            }
        });
        });
};

我想让func.php函数可以从任何地方重新编辑,所以我有一个名为cligit.com的url我尝试将它连接起来但是当我这样做时它停止工作

var security = function(){
    var link = $('#chosen').attr('href');
        $.get('http://www.vanillacomp.com/browse/func.php?callback=?func.php',function(result)         {
            if (result > 75 && result % 5 === 0){
                    $('#chosen').attr("href", link);


            }else{
             $('#chosen').attr('href','https://www.google.com');

            }
        });
        $("#chosen").click(function(){
            $.get('http://www.cligit.com/func2.php',function(results){
            if (results === results){
                location.reload();
            }
        });
        });
        $("#chosen").click(function(){
            $.get('http://www.cligit.com/func3.php',function(results){
            if (results === results){

            }
        });
        });
};

1 个答案:

答案 0 :(得分:0)

将这些内容添加到func.php页面

中的标题中
header('Access-Control-Allow-Origin: *');
header('Access-Control-Allow-Methods: GET, POST');

希望这有帮助,谢谢