JSON を使用するのはこれが初めてで、Web 開発の初心者です。彼らの Web サイト (http://www.json.org/JSONRequest.html) で、JSONRequest.get の使用が提案されました。ただし、「JSONRequest が定義されていません」というエラーが表示され続けます。以下の私のコード:
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<meta Content-Type= application/jsonrequest >
<title>Insert Events Page</title>
</head>
<body>
<h2>List of ALL events: </h2><br>
<script type="text/javascript">
try {
JSONRequest.get("http://localhost:8888/mma/event/allevents", function(sn, response, exception){
alert(exception || response);
});
}
catch(e) {
alert(e);
}
</script>
</body>
</html>