所以当我把文件名放在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){
}
});
});
};
答案 0 :(得分:0)
将这些内容添加到func.php
页面
header('Access-Control-Allow-Origin: *');
header('Access-Control-Allow-Methods: GET, POST');
希望这有帮助,谢谢