はい、あなたが求めているのはAJAXまたはXMLHttpRequestです。 jQueryのようなライブラリを使用して(ブラウザ間の互換性の問題により)簡単に呼び出しを行うことも、独自のハンドラを記述することもできます。 jQueryので
:(W3Cから)プレーンバニラJavaScriptで
$.GET('url.asp', {data: 'here'}, function(data){ /* what to do with the data returned */ })
:
var xmlhttp;
function loadXMLDoc(url)
{
xmlhttp=null;
if (window.XMLHttpRequest)
{// code for all new browsers
xmlhttp=new XMLHttpRequest();
}
else if (window.ActiveXObject)
{// code for IE5 and IE6
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
}
if (xmlhttp!=null)
{
xmlhttp.onreadystatechange=state_Change;
xmlhttp.open("GET",url,true);
xmlhttp.send(null);
}
else
{
alert("Your browser does not support XMLHTTP.");
}
}
function state_Change()
{
if (xmlhttp.readyState==4)
{// 4 = "loaded"
if (xmlhttp.status==200)
{// 200 = OK
//xmlhttp.data and shtuff
// ...our code here...
}
else
{
alert("Problem retrieving data");
}
}
}
FYI:JavaScriptは同じドメインとしか話せません。 JSON呼び出しを他のユーザーに呼び出すことはできますが、プロキシを使用する方が効果的です。 – epascarello