I'm trying to use jQuery to run an AJAX query on a specific port:
$(document).ready(function() {
$.ajax({
url: "http://test_serve:666/test.php",
type: "GET",
data: ({value_test: 'true'}),
dataType: "html"
});
})
This doesn't work: no AJAX call is made and I don't get any exceptions in Firebug.
It does work if I don't specify the port. Does anyone know why?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…