Jquery 选项卡脚本
我想制作一个网站,您可以在其中切换选项卡以显示或隐藏。我有这个代码。
var a = '0';
b = '0';
c = '0';
$(function(){
$('#googleOn').click(function(){
var a = '1';
set = a + b + c;
$.cookie('settings', set);
alert($.cookie('settings'));
});
$('#googleOff').click(function(){
var a = '0';
set = a + b + c;
$.cookie('settings', set);
alert($.cookie('settings'));
})
});
任何人都知道如何使代码更通用,这样我就不必为每个选项卡编写这段代码?
干杯
I want to make a website where you can toggle tabs to show or hide. I have this code.
var a = '0';
b = '0';
c = '0';
$(function(){
$('#googleOn').click(function(){
var a = '1';
set = a + b + c;
$.cookie('settings', set);
alert($.cookie('settings'));
});
$('#googleOff').click(function(){
var a = '0';
set = a + b + c;
$.cookie('settings', set);
alert($.cookie('settings'));
})
});
Anyone has an idea how to make the code more general, so that i don't have to write this piece for every tab?
cheers
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
有很多 jquery 选项卡脚本可供选择。这里只是一个参考: http://jqueryui.com/demos/tabs/
如果您使用 cookie 来记住选择了哪个选项卡,则最好对选项卡链接使用哈希值,并在单击每个选项卡时将其添加到 URL。
There are plenty of jquery tab scripts to choose from. Here is just one reference: http://jqueryui.com/demos/tabs/
If you are using cookies to remember what tab is selected, it may be better to use a hash value for the tab links and ad this to the URL when each tab is clicked.