0
我對每個標記都有一個JSTL,如下所示。Javascript顯示/隱藏<c:forEach> JSTL的div元素
<c:forEach items="${schedule}" var="period">
<td>
<div id="friends">
${period.getFriends()}
</div>
</td>
</c:forEach>
我想實現一個按鈕,點擊後會隱藏或顯示所有這些塊。到目前爲止,所有按鈕都隱藏或顯示塊的第一個元素。我不知道它爲什麼不遍歷所有的塊。
<button onclick="myFunction()" class="btn btn-success btn-xs">With friend</button>
<button class="btn btn-danger btn-xs">Without friend</button>
<script>
function myFunction() {
var div = document.getElementById('friends');
div.innerHTML = "AFJASFAS";
}
</script>
正如你所看到的,我並沒有真正實現顯示和隱藏按鈕。我只是通過添加額外的文本來測試它,但是,這個文本只被添加到第一個div中。我如何使它適用於所有元素?
Thx它的工作原理,但我只需要循環通過div數組不知道我不能將它分配給整個數組。 – lun 2015-04-04 14:04:18