<!DOCTYPE html>
<html>
<head>
<script src="http://code.jquery.com/jquery-latest.js"></script>
</head>
<body>
<script type="text/javascript">
var url = "https://maps.googleapis.com/maps/api/place/search/json?key=AIzaSyBnEjp_CRcL_APx4mMsmuke9SV1PWZfnww&sensor=false&location=26.526437,-80.163004&radius=500&keyword=Physican%27s+Weight+Loss+Centers&types=";
jQuery.getJSON(url, function (data) {
alert(data);
});
</script>
</body>
</html>
上記のコードを実行している間、アラート ウィンドウが表示されません。URL にはコールバック関数がありません。jQueryまたはJavascriptを使用してJSON URLからデータを解析/取得する方法に関するヘルプまたは有用なリンクをいただければ幸いです。