Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
こんにちは私は次のコードを持っています
$.ajax({ url: "bot.json", dataType: "json", type: "GET" }).done(function (data) { $('#jsummary').html(data); console.log(data); });
#jsummary div に応答を表示したいのですが、空です。何が欠けていますか。bot.json の json は有効です。
これを試して
$.ajax({ url: "bot.json", dataType: "json", type: "GET", success: function (data) { $('#jsummary').html(data); console.log(data); } });