如圖出現的報錯是:cannot set property "onclick"of null at window.onload
光阴似箭催人老,日月如移越少年。
獲取不到元素啊。 給input設定id
下回請貼代碼;
你用的是document.getElementById(),可是你HTML結構裡沒給id;
document.getElementById()
建議用element.getElementsByTagName(tagName)這個API,這個才是標籤名。
element.getElementsByTagName(tagName)
獲取不到元素啊。 給input設定id
下回請貼代碼;
你用的是
document.getElementById()
,可是你HTML結構裡沒給id;建議用
element.getElementsByTagName(tagName)
這個API,這個才是標籤名。