我想在JS中製作類似庫的東西。如果table有一個class =「aClass」,我想用JS自動修改它的一些元素。所有html加載後的JS事件
我試着這樣說:
window.onLoad = LoadSetup();
function LoadSetup()
{
tables = document.getElementsByTagName("table");
alert(tables.length); // it's 0 though there are is one in the document
}
但我看來,這個函數加載HTML之前運行。如何解決這個問題?
你是對的,謝謝。很難跟蹤我(2天的JS經驗),因爲它實際上做了一些或多或少的預期和我的預期。再次感謝您。 – gisek