为什么示例 1 中的 url 可以使用$.get
,而示例 2 中的 URL 不能使用?有没有办法使示例二起作用?
示例一
$.get("http://localhost/magic/pages/tcgqueryoutput.php",
function(data, statusTxt){
$('#tcg_query_output').html(data);
});
示例二
$.get("tcgqueryoutput.php",
function(data, statusTxt){
$('#tcg_query_output').html(data);
});