FBJS addClassName removeClassName 不起作用
当人们单击选项卡时,我尝试向选项卡添加和删除类。这就是我现在所拥有的,它绝对没有任何作用......!
<script>
<!--
function toggleClasses() {
tab1 = document.getElementById("tab1");
tab2 = document.getElementById("tab2");
tab3 = document.getElementById("tab3");
tab4 = document.getElementById("tab4");
tab1.removeClassName("bstTabSelected").addClassName("bstTab");
tab2.removeClassName("bstTabSelected").addClassName("bstTab");
tab3.removeClassName("bstTabSelected").addClassName("bstTab");
tab4.removeClassName("bstTabSelected").addClassName("bstTab");
}
//-->
</script>
我打电话给它:
<a href="#" id="tab1" onclick="toggleClass()" class="bstTabSelected" clicktoshow="tab1" clicktohide="tab2,tab3,tab4">Tab 1</a>
我似乎无法弄清楚......谢谢!
I'm trying to add and remove classes to tabs when people click on them. This is what I have right now and it does absolutely nothing..!
<script>
<!--
function toggleClasses() {
tab1 = document.getElementById("tab1");
tab2 = document.getElementById("tab2");
tab3 = document.getElementById("tab3");
tab4 = document.getElementById("tab4");
tab1.removeClassName("bstTabSelected").addClassName("bstTab");
tab2.removeClassName("bstTabSelected").addClassName("bstTab");
tab3.removeClassName("bstTabSelected").addClassName("bstTab");
tab4.removeClassName("bstTabSelected").addClassName("bstTab");
}
//-->
</script>
I'm calling it with:
<a href="#" id="tab1" onclick="toggleClass()" class="bstTabSelected" clicktoshow="tab1" clicktohide="tab2,tab3,tab4">Tab 1</a>
I can't seem to figure it out.. thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的函数名为
toggleClasses
(复数),其中您的点击事件调用toggleClass
(单数)编辑
您是否使用 Firefox 和 Firebug? FBJS 不会覆盖控制台,这非常方便。确保你的函数正在运行
You function is named
toggleClasses
(plural) where your click event callstoggleClass
(singular)EDIT
Are you using Firefox and Firebug? FBJS doesn't ovewrite the console, which is super handy. Make sure your function is running at all