我在这里做了一些搜索,并没有完全弄明白这一点。基本上我正在尝试获取图像以在我单击时加载我的CSS的高对比度版本,然后在我再次单击它时重新加载页面。页面重新加载将恢复对比度。
function appendStyleSheet() {
$('head').append('<link rel="stylesheet" href="http://gallanthearts.org/wp-content/themes/Gallant_Hearts/css/high-contrast.css" type="text/css" id="hc_stylesheet" />');
}
$('#contrastbtn').toggle(
$("#contrastbtn").click(function() {
appendStyleSheet();
}),
$("#contrastbtn").click(function() {
location.reload();
})
);