我就在這這是爲什麼來了空
document.getElementById("Attachment" + x).style.display = "none";
我真的不想寫這5次行空的錯誤。如果我這樣做,這條線就行。
document.getElementById("Attachment1").style.display = "none";
我在這裏錯過了什麼?爲了保持這個簡短,我只包含了錯誤所在的循環。
for (x = 0; x < 5; x++)
{
if(showHideArray[x] > 0)
{
document.getElementById("Attachment" + x).style.display = "none";
}
else {
document.getElementById("Attachment" + x + "If").style.display = "none";
}
}
你是對的,先回答。我確實擁有一個帶有Attachment0標識的元素。謝謝您的幫助! – user1015711 2012-01-13 23:27:38