程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程解疑 >> javascript-初學JavaScript,關於函數調用請求糾錯

javascript-初學JavaScript,關於函數調用請求糾錯

編輯:編程解疑
初學JavaScript,關於函數調用請求糾錯

是一個點擊事件,點擊後全選,在嘗試過程中發現點擊事件沒有響應。求解答。
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

拼寫錯誤。

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved