用Js動態新增的td標籤,並設定了一個class為bg_red,然後頁面載入完後我想取得這個class,var a = document.getElementByClassName('bg_red')這樣獲取,我用console.log( typeof a)印出來是一個對象,再console.log(a)確實有很多屬性值在裡面,為什麼我用console.log(a[0])就是undefined了? a的length是300,console.log(a.length)印出來居然是0,什麼原因?圖如下:
###