I have implemented tabbed browsing using this http://css-tricks.com/functional-css-tabs-revisited/ I have a click event inside one of my tabs(say tab1). Is there some way I can redirect from tab1 to tab3 inside this click event??Since, the link says 'no javascript', I am skeptical whether this can be done or not
我使用这个http://css-tricks.com/functional-css-tabs-revisited/实现了标签式浏览。我在其中一个标签中有一个点击事件(比如tab1)。有没有什么方法可以在这个点击事件中从tab1重定向到tab3?因为,链接说'没有javascript',我怀疑是否可以这样做
1 个解决方案
#1
0
Adding this inside the eventlistener code works:
在eventlistener代码中添加这个工作:
document.getElementById("tab-3").checked = true;
#1
0
Adding this inside the eventlistener code works:
在eventlistener代码中添加这个工作:
document.getElementById("tab-3").checked = true;