是一個點擊事件,點擊後全選,在嘗試過程中發現點擊事件沒有響應。求解答。
1. <!DOCTYPE >
1. < html >
1. < head>
1. < meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
1. < title>無標題文檔< /title>
1. < script>
1. window.onlaod=function ()
1. {
1. var oBtn1=document.getElementById('btn1');
1. var oDiv=document.getElementById('div1');
1. var aCh=oDiv.getElementsByTagName('input');
1.
1. oBtn1.onclick =function ()
1. {
1. for(i=0; i < aCh.length;i++)
1. {
1. aCh[i].checked =true;
1. }
1. };
1. };
1. < /script>
1. < /head>
1.
1. < body>
1. < input id="btn1" type="button" value="全選"/>
1. < /br>
1. < div id=div1>
1. < input type="checkbox" />
1. < input type="checkbox" />
1. < input type="checkbox" />
1. < input type="checkbox" />
1. < input type="checkbox" />
1. < input type="checkbox" />
1. < input type="checkbox" />
1. < input type="checkbox" />
1.
1.
window.onload 不是 window.onlaod
拼寫錯誤。