2013-10-07 87 views
0

我需要做的是從名爲megaContent的div中加載第二個表(或tbody)元素(Un-named並且沒有類)。我打算做的事情是讓瀏覽器進入頁面,然後加載這個JS並讓它只顯示那個部分。從特定Div加載元素JS

回答

1

這並不完全清楚「LOAD only the table」是什麼意思。如果你想只顯示錶,你不知道如何去實現它,因爲它沒有任何class和id,你可以做這樣的事情:

var tbls = document.getElementById("megaContent").getElementsByTagName("table"); 
var tbl = tbls[0]; // [0] if the desired table is the first table in that div, [1] if second etc. 
tbl.style.display="block"; //or "table", or whatever you'd like to do with that table. 

希望這會有所幫助。