带有背景src的Cookie无效

时间:2014-05-14 18:52:45

标签: javascript jquery html cookies

我的jQuery:

$(function() {
$("#background").on('submit' function(e) {
    var src = $("#background input").content();
    $.cookie("background",src);
});
});

我的HTML:

<form id="background">
    <input type="text" />
</form>

当我提交表单时,它应该更新/放置一个名为background的cookie和图像的完整src链接,但这对我不起作用

工作:

$(function() {
  $("#background").on('submit', function(e) {
      var src = $(this).find("input").val();
      $.cookie("background",src);
  });
});

0 个答案:

没有答案