Javascript(個人的なメモ、スクリプト用パーツ)
日付取得
now = new Date();
year = now.getFullYear();
mon = now.getMonth()+1
day = now.getDate();
lastfull= new Date(year,mon+1,0);
lastday= lastfull.getDate()
var s = year + "年" + mon + "月" + day + "日";
return s;
ファイル出力
let bom = new Uint8Array([0xEF, 0xBB, 0xBF]); ★バイトオーダーマーク(utf-8)
let blob = new Blob([bom, 'あいうえお'],{type:"text/plan"});
let link = document.createElement('a');
link.href = URL.createObjectURL(blob);
link.download = '作ったファイル.拡張子';
link.click();
コメント
最新を表示する
NG表示方式
NGID一覧