Javascript

ページ名:Javascript

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();


シェアボタン: このページをSNSに投稿するのに便利です。

コメント

返信元返信をやめる

※ 悪質なユーザーの書き込みは制限します。

最新を表示する

NG表示方式

NGID一覧