js 实现浏览历史记录示例_javascript技巧
程序员文章站
2022-06-06 19:22:00
...
先必须要引用一个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
');
xhtml.push('');
xhtml.push('
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
复制代码 代码如下:
xhtml.push('');
xhtml.push('
已销售'+splithtml[i].split("|")[4]+'笔再看看
上一篇: 关于Hibernate缓存机制
推荐阅读
-
jQuery.cookie.js实现记录最近浏览过的商品功能示例
-
纯JS实现的读取excel文件内容功能示例【支持所有浏览器】
-
JavaScript开发中如何利用浏览器全屏api实现js全屏
-
node.js实现http服务器与浏览器之间的内容缓存操作示例
-
JavaScript实现浏览器网页自动滚动并点击的示例代码
-
使用 Javascript 实现浏览器推送提醒功能的示例
-
js实现目录定位正文示例_javascript技巧
-
JS实现简单的顶部定时关闭层效果_javascript技巧
-
js取消单选按钮选中示例代码_javascript技巧
-
两种方法实现在HTML页面加载完毕后运行某个js_javascript技巧