gistfile1.txt ps�C V j�C V $.ajax({ type: "POST", url: "api.php", timeout: 10000, cache: false, data: {'hello': "world"}, dataType: 'json' }) .done(function (response, textStatus, jqXHR) { console.log(response); if (response.status === "err") { alert("err: " + response.msg); } else { alert("OK"); } }) .fail(function (jqXHR, textStatus, errorThrown) { console.log(jqXHR); alert("失敗: サーバー内でエラーがあったか、