我有一个来自这个演示的脚本:tutorialzine.com
如您所见,cookie 保存为纯文本。但是我需要将其保存为链接。所以我尝试了:
// If the cookie has been set in a previous page load, show it in the div directly:
if(cookie) $('.jq-text').text(cookie).show();
$('.fields a').click(function(e){
var text = $('#inputBox').val();
// Setting a cookie with a seven day validity:
$.cookie('demoCookie',text,{expires: 7, path: '/', domain: 'domain.com'});
$('.jq-text').attr('href', text).html(text);
我不知道究竟要改变什么才能'attr''var text'并将其保存为$cookie。
请看演示:JsFiddle