Archives by date

You are browsing the site archives by date.

jQueryにてjson形式の文字列をオブジェクトに変換する。

PHPとかでjson_encodeした配列をフロント側でパースしたい時用。

// 何かしらのjson文字列
var str = '{"my":"banana","favorite":"apple","fruit":"orange"}';
var obj = $.parseJSON(str);
console.log(obj);

json文字列内はシングルクオーテーションが使用出来ないので注意。

jQueryにてセレクターの子要素を取得する。

メモメモ。

// 直下の子要素がtdの場合のみ取得可能(孫は無視)
$('selector').children('td');

// 孫も見に行くパターン
$('selector').find('td');