風変わりな茶杓の銘便覧
未分類
Hello world!
データを読み込み中... 名前 読み 意味・解説 タグ
2025.08.19
未分類
ホーム
検索
トップ
サイドバー
jQuery(function($) { $.ajax({ url: my_ajax_params.ajax_url, type: 'POST', data: { action: 'fetch_my_json', nonce: my_ajax_params.nonce }, success: function(response) { if (response) { var htmlContent = '
'; // データを1つずつ処理してHTMLを組み立てる $.each(response, function(index, item) { htmlContent += '
'; htmlContent += '
' + item.name + '(' + item.hiragana + ')
'; htmlContent += '
意味:
' + item.content + '
'; htmlContent += '
タグ:
' + item.tag.join(', ') + '
'; htmlContent += '
'; }); htmlContent += '
'; // 画面の「data-display-area」の中身を書き換える $('#data-display-area').html(htmlContent); } }, error: function() { $('#data-display-area').html('
データの取得に失敗しました。
'); } }); });