js 实现浏览历史记录示例
js 实现浏览历史记录示例
发布时间:2016-12-30 来源:查字典编辑
摘要:先必须要引用一个jsjquery.cookie.js1,首先写入jsCookied复制代码代码如下://浏览记录写入JSCookied开始v...

先必须要引用一个js jquery.cookie.js

1,首先写入jsCookied

复制代码 代码如下:

//浏览记录 写入JSCookied 开始

var img=$("#ProductImgurl").attr("jqimg");

var name=$("#ProductDetail_ctl00_LabelName").text();

var url=location.href;

var price=$("#ProductDetail_ctl00_LabelShopPrice").text();

var sellcount=$("#ProductDetail_ctl00_lblSaleNumber").text();

var hc=img+"|"+name+"|"+url+"|"+price+"|"+sellcount;

if($.cookie("history")!=null)

{

if($.cookie("history").indexOf(name)==-1)

{

$.cookie("history",hc+"*"+$.cookie("history"),{expires:8,domain:'.groupfly.com',path:"/"});

}

}

else

{

$.cookie("history",hc,{expires:8,domain:'.groupfly.com',path:"/"});

}

//浏览记录 写入JSCookied 结束

2,然后再读取Cookied

复制代码 代码如下:

<script type="text/javascript" charset="utf-8">

//读取cookied历史记录

$(function(){

var hc=$.cookie("history");

if(hc!=null)

{

if(hc.indexOf("*")!=-1)

{

var splithtml=hc.split("*");

var xhtml=new Array();

var hlength=splithtml.length;

if(parseInt(hlength)>4)

hlength=4;

for(var i=0;i<parseInt(hlength);i++)

{

xhtml.push('<div><div><a href="'+splithtml[i].split("|")[2]+'">'+splithtml[i].split("|")[1].substr(0, 17)+'</a></div>');

xhtml.push('<div><a href="'+splithtml[i].split("|")[2]+'"><img src="'+splithtml[i].split("|")[0]+'_160x160.jpg" alt="'+splithtml[i].split("|")[1]+'" /></a><p>¥'+splithtml[i].split("|")[3]+'</p></div>');

xhtml.push('<div><span>已销售<b>'+splithtml[i].split("|")[4]+'</b>笔</span><a href="'+splithtml[i].split("|")[2]+'">再看看</a></div></div>');

}

xhtml.push('<div><a href="javascript:clearcookied();">清空记录</a></div>');

$("#MyHistory").append(xhtml.join(""));

}

else{

var xhtml=new Array();

xhtml.push('<div><div><a href="'+hc.split("|")[2]+'">'+hc.split("|")[1].substr(0, 17)+'</a></div>');

xhtml.push('<div><a href="'+hc.split("|")[2]+'"><img src="'+hc.split("|")[0]+'_160x160.jpg" alt="'+hc.split("|")[1]+'" /></a><p>¥'+hc.split("|")[3]+'</p></div>');

xhtml.push('<div><span>已销售<b>'+hc.split("|")[4]+'</b>笔</span><a href="'+hc.split("|")[2]+'">再看看</a></div></div>');

xhtml.push('<div><a href="javascript:clearcookied();">清空记录</a></div>');

$("#MyHistory").append(xhtml.join(""));

}

}

else

{

$("#MyHistory").append("<li>暂无浏览记录</li>");

}

});

function clearcookied()

{

$.cookie('history',null,{expires:1,domain:'.nrqiang.com'});

$("#MyHistory").html("<li>暂无浏览记录</li>");

}

$(function() {

$("img").each(function(){$(this).attr("src",$(this).attr("original"));});

});

</script>

推荐文章
猜你喜欢
附近的人在看
推荐阅读
拓展阅读
相关阅读
网友关注
最新Javascript教程学习
热门Javascript教程学习
编程开发子分类