我正在使用 jQuery 选项卡处理页面。该示例显示了如何在选择选项卡时设置 cookie。但是,我想做的是使用一个按钮来要求用户有意识地决定选择一个特定的选项卡作为他/她的默认选项卡。
我在每个选项卡的内容中添加了一个按钮,其值等于选项卡锚值。目前单击仅显示警告消息。
有人可以帮我将按钮单击与将 cookie 设置为选项卡值相关联。我已经建立了一个 jsfiddle 来展示我想要完成的事情。任何帮助将不胜感激!!
http://jsfiddle.net/lbriquet/eLx2d/15/
$(function() {
$( "#tabs" ).tabs({
select: function(event, ui) {
window.location.replace(ui.tab.hash);
},
cookie: {
// store cookie for a day, without, it would be a session cookie
expires: 1
}
});
$(".my_button").click(function() {
alert($(this).attr("value"));
});
});