オプションにasync: falseを付ける jQuery.ajax({ type: ‘POST’, url: request_url, async: false }).done(function
Read moreURL変数を取得
/** * URL変数を取得する */ function getUrlVars( url ) { //URL変数がない場合 if ( !url.indexOf( ‘?’ )) { return n
Read moreJSONデータを文字列に変換
JSON.stringify(data, null, 2)
Read more現在の時間を文字列で取得
/* * 現在の時間を文字列で取得 */ function getTime(){ tmp = new Date(); return tmp.getFullYear()+’-‘+(tmp.getMo
Read more