我試圖使用jQuery來運行特定的端口上的一個AJAX查詢:是否有可能在一個Ajax調用指定端口
$(document).ready(function() {
$.ajax({
url: "http://test_serve:666/test.php",
type: "GET",
data: ({value_test: 'true'}),
dataType: "html"
});
})
這不起作用:沒有AJAX調用時和我在Firebug中沒有任何例外。 如果我不指定端口,它可以工作。有誰知道爲什麼?
謝謝,看起來JSONP會提供答案! – 2009-11-20 04:55:43