我想通過jQuery向不同服務器中存在的PHP腳本(比如IP爲11.1.35.12)發出AJAX請求,並且PHP腳本的位置是「C :\ inetpub \ wwwroot \ Kibana \ mytelemetry.php「。我的下面的ajax代碼應該是什麼網址?使用jQuery的AJAX調用中的url字段的格式
$.ajax({
url : "11.1.35.12/Kibana/mytelemetry.php",
cache : false,
data : ({
DshBrdName : strFullDashBoardName,
DshBrdID : currentDashboard,
r : Math.random()
}),
success : function(data, textStatus, jQxhr){
//alert(textStatus);
},
error : function(jqXHR, textStatus, errorThrown){
//alert(textStatus);
alert(errorThrown);
},
type : "POST"
});
P.S:以上不行!我很確定我的網址格式是錯誤的。
https://en.wikipedia.org/wiki/Cross-origin_resource_sharing – RiggsFolly