我正在尝试创建一个按钮,一旦点击就切换网站背景。当然,设置需要保存在cookie中,以便它坚持下去。
如何组合这两个脚本,以便一旦点击按钮,它就会保持切换状态,背景为?或者依赖于身体类'点击'?
我找到了一种在cookie中切换和保存背景的方法:
$(document).ready(function() {
var body_class = $.cookie('body_class');
if(body_class) {
$('body').attr('class', body_class);
}
$("#switch").click(function() {
$("body").toggleClass('clicked');
$.cookie('body_class', $('body').attr('class'));
});
});
然后按钮从switch_on.png切换到switch_off.png:
$(function(){
$(".toggle-swap").click(function() {
if ($(this).attr("class") == "toggle-swap") {
this.src = this.src.replace("switch_on.png","switch_off.png");
} else {
this.src = this.src.replace("switch_off.png","switch_on.png");
}
$(this).toggleClass("on");
});
});
我的按钮:
<div id="switch"><a href="#"><img class="toggle-swap" src="../img/switch_on.png" alt=""></a></div>
答案 0 :(得分:0)
我将它组合成一个功能,例如像这样:
$(function() {
// Create a variable for the current state
var body_class;
// Cache some elements
var $body = $('body'), $switch = $('.toggle-swap');
// Define a function that toggles background + button
var toggleBodyClass = function(event) {
// Toggle the images
if (body_class) {
$switch[0].src = $switch[0].src.replace("switch_off.png","switch_on.png");
body_class = '';
} else {
$switch[0].src = $switch[0].src.replace("switch_on.png","switch_off.png");
body_class = 'clicked';
}
// Toggle some css classes (body + button)
$body.toggleClass('clicked');
$switch.toggleClass('on');
// Update the cookie
$.cookie('body_class', body_class);
// Prevent the browsers default behavior
if (event) event.preventDefault();
};
// Set the initial state
if ($.cookie('body_class')) {
toggleBodyClass();
}
// Bind the event handler
$switch.click(toggleBodyClass);
});