从instagram引用时,ajax函数不起作用

时间:2016-10-04 03:08:42

标签: php jquery json ajax

当从Instagram引用链接时,我的函数似乎没有为目标元素返回任何内容。如果我直接访问该页面,它可以正常工作。

 function getTeamsByLeague(league) {
        //console.log("League Set: " + league);
        $.ajax({
            url: "<?php echo SITE_BASE_URL; ?>json.php",
            data: {method: "getteamsbyregion", league: league},
            success: function (data) {
                if (data && data.length > 0) {
                    $("#destination").empty();
                    var selected = "";
                    $.each(data, function (index, item) {

                        if (item.team == teamSelected) {
                            selected = " selected";
                            $("#latitude").val(item.lat);
                            $("#longitude").val(item.lng);
                        } else {
                            selected = "";
                        }
                        $("#destination").append('<option ' + selected + ' value="' + item.lat + ',' + item.lng + '">' + item.team + '</option>');
                        if (index == 0) {
                            $("#latitude").val(item.lat);
                            $("#longitude").val(item.lng);
                        }
                    });
                }
            },
            type: "GET",
            dataType: "json"
        });
    }

0 个答案:

没有答案