onclickイベント(クリックイベント)とは、マウスの左ボタンをクリックした時のイベント。
構文
HTML
<element onclick="イベントハンドラ">
例
ボタン要素
<button onclick="イベントハンドラ">ボタン</button>
LI要素
<li onclick="イベントハンドラ">リスト項目</li>
JavaScript
object.onclick = function(){ イベントハンドラ };
サンプル1
HTMLドキュメント上でイベントハンドラを登録するサンプル。
0
サンプル1の動作について
「カウントアップ」ボタンをクリックする度に、ボタンの右横の数値に1を加算する。
サンプル1のソースコード
JavaScript
<script type="text/javascript">
var $countA = 0;
function countUpA() {
document.getElementById( "sampleOutputA" ).innerHTML = ++$countA;
}
</script>
var $countA = 0;
function countUpA() {
document.getElementById( "sampleOutputA" ).innerHTML = ++$countA;
}
</script>
HTML
<p>
<button onclick="countUpA();">カウントアップ</button>
<span id="sampleOutputA" style="margin-left: 10px;">0</span>
</p>
<button onclick="countUpA();">カウントアップ</button>
<span id="sampleOutputA" style="margin-left: 10px;">0</span>
</p>
サンプル2
JavaScript上で動的にイベントハンドラを登録するサンプル。
0
サンプル2の動作について
「カウントアップ」ボタンをクリックする度に、ボタンの右横の数値に1を加算する。
サンプル2のソースコード
JavaScript
<script type="text/javascript">
window.onload = function () {
document.getElementById( "sampleButtonB" ).onclick = function(){
countUp();
};
}
var $count = 0;
function countUp() {
document.getElementById( "sampleOutputB" ).innerHTML = ++$count;
}
</script>
window.onload = function () {
document.getElementById( "sampleButtonB" ).onclick = function(){
countUp();
};
}
var $count = 0;
function countUp() {
document.getElementById( "sampleOutputB" ).innerHTML = ++$count;
}
</script>
HTML
<p>
<button id="sampleButtonB">カウントアップ</button>
<span id="sampleOutputB" style="margin-left: 10px;">0</span>
</p>
<button id="sampleButtonB">カウントアップ</button>
<span id="sampleOutputB" style="margin-left: 10px;">0</span>
</p>