[サンプルソース1]
function test() {
method01();
method02();
}
function method01() {
// 変数の宣言
var a = "Hello!";
// "Hello!"と表示される
alert(a);
}
function method02() {
// エラーになる
alert(a);
}
[サンプルソース2]
function test() {
method01();
method02();
}
function method01() {
// var を付けずに変数を宣言
a = "Hello!";
// "Hello!"と表示される
alert(a);
}
function method02() {
// "Hello!"と表示される
alert(a);
}
[Java Script - Java Script - 基本]
基本構文 【変数の宣言、if、for、while、関数】
IDからエレメントの参照を取得する 【document.getElementById】
画面遷移せずにHTMLのテキストを変える 【innerHTML】
変数の型を取得する 【typeof】
テキストボックスを動的に入力可・不可にする 【readOnly】
タイマーをセットする 【setTimeout】
無名関数を宣言する 【function】
プロトタイプチェーンについて 【prototype】