我的cookie集不起作用

时间:2014-05-14 19:16:21

标签: javascript jquery html cookies

我的jQuery:

$(function() {
$("#change-background").on('submit', function(e) {
    var src = $(this).find("input").val();
    $.cookie("_usci",src);
    //NOT HERE$("body").css("background-image", 'url($.cookie("_usci"))';
});
    //BUT HERE!! otherwise it will not work
});

网址必须在这些'或者这些'之内,但是cookie不会用得好,我该如何解决?

2 个答案:

答案 0 :(得分:2)

你试过这个吗?:

$("body").css("background-image", 'url(' + $.cookie("_usci") + ')';

答案 1 :(得分:1)

在css参数

中使用字符串连接
$("body").css("background-image", 'url('+$.cookie("_usci")+')');
//don't forget to close your css call as Jonathan notes       ^