var button 1 = document . getelementbyid(" button 1 ");
button 1 . attach event(" onclick ",button event);
button 1 . click();
}
現在我們來改造壹下。
功能測試(){
var button 1 = document . getelementbyid(" button 1 ");
button 1 = null;
button 1 . attach event(" onclick ",button event);
button 1 . click();
}
運行後腳本會出錯,網頁錯誤詳情如下:
消息:“null”為空或者不是對象。
這說明已經執行了button 1 = null;代碼後的Button1為空。
如果button1 = null,則替換為button 1 = " null ";那麽button1的值就是字符串“null”,有引號和沒有引號區別很大。
排版有點亂,但希望這個回答對妳有幫助。