javascript

確認ダイアログ

<a href="javascript:void(0);" onclick="var ok=confirm('xxxxx');if (ok) location.href=‘○○.php'; return false;">xxxxx</a>

クラスまとめ(ES6)

クラスの定義 class クラス名 { constructor() { } } デフォルト値 class クラス名 { constructor(x = 0, y = 0) { } } クラスプロパティ class クラス名 { constructor(x = 0, y = 0) { this.x = x; this.y = y; } } クラスメソッド class クラス名 { const…