盡量少用getElementsByClassName... - TerryLee7788/JS_test GitHub Wiki
盡量少用, 因為兼容性不太好,
且ie到了9還不支援.
所以改用 querySelectorAll('#terry')[0]
選取方式,
更接近JQ且支援度高。
附上參考網址: https://developer.mozilla.org/en-US/docs/Web/API/Document.querySelectorAll
盡量少用, 因為兼容性不太好,
且ie到了9還不支援.
所以改用 querySelectorAll('#terry')[0]
選取方式,
更接近JQ且支援度高。
附上參考網址: https://developer.mozilla.org/en-US/docs/Web/API/Document.querySelectorAll