嗨,任何人都可以幫助我。按類別切換可見性
我該如何使用切換可視性,而不是以id爲例。
的按鈕
<a href="javascript:void(0);" onclick="toggle_visibility('trailer');">Trailer</a>
然後這一點。
<div class="trailer" style="display:none">{include file="trailer.tpl"}</div>
那麼我該如何修改這個JavaScript來處理類。
{literal}
<script type="text/javascript">
<!--
function toggle_visibility(id) {
var e = document.getElementById(id);
if(e.style.display == 'block')
e.style.display = 'none';
else
e.style.display = 'block';
}
//-->
</script>
{/literal}
那麼,什麼樣的JavaScript將爲此請幫助。
用途,而不是的document.getElementById – RafH
document.getElementByClassName'.getElementsByClassName'(缺一「S」) – tobi