我想包含一个 20 像素 x 20 像素的潜在背景图像的迷你菜单。当用户单击其中一个时,主体背景图像将更改,并且选择保存为用户选择。
我曾考虑过使用滑块,但我不知道如何才能将图像放在 a 中li
并能够根据选择更改正文 css。
有任何想法吗?
7月4日快乐
编辑我正在尝试将 img url 保存在该 cookie 中,但它不起作用,它保存在 cookie 中但它没有检索 cookie 内容
编辑以下作品,!!!!!!! 但是即使我添加了背景颜色也总是白色 $("html").css("background-color","red");
FIX,在网址末尾添加颜色
$("html").css("background", "url('" + imgCookieLink + "') no-repeat fixed center top #343837");
$(document).ready(function() {
$("#BGSelector a").click(function() {
var imgLink = $("img", this).attr("src");
$.cookie("html_img", "" + imgLink + "", { expires: 7 });
var imgCookieLink = $.cookie("html_img");
$("html").css("background", "url('" + imgCookieLink + "')");
});
});
<script type="text/javascript">
$(document).ready(function() {
$("#BGSelector a").click(function() {
var imgLink = $("img", this).attr("src");
$.cookie("html_img", "" + imgLink + "", { path: '/vitamovie', expires: 7 });
var imgCookieLink = $.cookie("html_img");
$("html").css("background", "url('" + imgCookieLink + "') no-repeat fixed center top");
});
});
</script>
<script type="text/javascript">
$(document).ready(function() {
var imgCookieLink = $.cookie("html_img");
$("html").css("background", "url('" + imgCookieLink + "') no-repeat fixed center top");
});
</script>