539 バイト追加
、 2020年2月15日 (土) 07:33
==イベントハンドラのアタッチ==
[JavaScript]
// イベントハンドラのアタッチ
function attachEventHandler() {
var radioGroups = document.getElementsByName("RADIO_ITEM_ID");
for (var i=0; i<radioGroups.length; i++) {
radioGroups[i].onclick = clickEventHandler;
}
}
// イベントハンドラ
function clickEventHandler() {
alert("radio button clicked.");
}
{{ref attacheventhandler.lzh}}
----
{{ref attacheventhandler.lzh}}
{{attach}}
----
{{include_html banner_html, "!Javascript"}}