- 16 Linux
- 7 MySQL
- 5 javascript
- 3 jQuery
- 1 画像
- 6 Google Chorme
- 4 xampp
- 1 css
- 1 PHP
- 3 Poderosa
- 1 LINE API
- 3 Windows
javascript » javascript で クラスとほぼ同義のものを定義
var *CLASS_NAME* = function (arg) {
// プロパティ
this.*property_name* = *初期値*;
// この領域がコンストラクタ
// メソッド
this.*method_name* = function (arg) {
}
};
// インスタンス生成
*** = new *CLASS_NAME*;