最新文章专题视频专题问答1问答10问答100问答1000问答2000关键字专题1关键字专题50关键字专题500关键字专题1500TAG最新视频文章推荐1 推荐3 推荐5 推荐7 推荐9 推荐11 推荐13 推荐15 推荐17 推荐19 推荐21 推荐23 推荐25 推荐27 推荐29 推荐31 推荐33 推荐35 推荐37视频文章20视频文章30视频文章40视频文章50视频文章60 视频文章70视频文章80视频文章90视频文章100视频文章120视频文章140 视频2关键字专题关键字专题tag2tag3文章专题文章专题2文章索引1文章索引2文章索引3文章索引4文章索引5123456789101112131415文章专题3
当前位置: 首页 - 科技 - 知识百科 - 正文

Jquery最近浏览过的商品的功能实现代码_jquery

来源:动视网 责编:小采 时间:2020-11-27 20:49:14
文档

Jquery最近浏览过的商品的功能实现代码_jquery

Jquery最近浏览过的商品的功能实现代码_jquery: //与Prototype 类似的框架 //插件 代码如下: /*JCookie.js * / jQuery.cookie = function(name, value, options) { if (typeof value != 'undefined') { // name and value given, set cookie opti
推荐度:
导读Jquery最近浏览过的商品的功能实现代码_jquery: //与Prototype 类似的框架 //插件 代码如下: /*JCookie.js * / jQuery.cookie = function(name, value, options) { if (typeof value != 'undefined') { // name and value given, set cookie opti
 //与Prototype 类似的框架
//插件
代码如下:
/*JCookie.js * /
jQuery.cookie = function(name, value, options) {
if (typeof value != 'undefined') { // name and value given, set cookie
options = options || {};
if (value === null) {
value = '';
options.expires = -1;
}
var expires = '';
if (options.expires && (typeof options.expires == 'number' || options.expires.toUTCString)) {
var date;
if (typeof options.expires == 'number') {
date = new Date();
date.setTime(date.getTime() + (options.expires * 24 * 60 * 60 * 1000));
} else {
date = options.expires;
}
expires = '; expires=' + date.toUTCString(); // use expires attribute, max-age is not supported by IE
}
var path = options.path ? '; path=' + options.path : '';
var domain = options.domain ? '; domain=' + options.domain : '';
var secure = options.secure ? '; secure' : '';
document.cookie = [name, '=', encodeURIComponent(value), expires, path, domain, secure].join('');
} else { // only name given, get cookie
var cookieValue = null;
if (document.cookie && document.cookie != '') {
var cookies = document.cookie.split(';');
for (var i = 0; i < cookies.length; i++) {
var cookie = jQuery.trim(cookies[i]);
// Does this cookie string begin with the name we want?
if (cookie.substring(0, name.length + 1) == (name + '=')) {
cookieValue = decodeURIComponent(cookie.substring(name.length + 1));
break;
}
}
}
return cookieValue;
}
};

代码如下:


var historyp;
//最新访问的商品编号ID
var nid="新商品编号ID";
//设置cookie保存的浏览记录的条数
var N=10;
var count=0;
//判断是否存在cookie
if($.cookie('smile1314h')==null) //cookie 不存在
{
//创建新的cookie,保存浏览记录
$.cookie('smile1314h',nid,{expires:7,path:'/'});
//$.cookie('smile1314h',nid,{expires:7,path:'/',domain:'smile1314.com',secure:true});
}
else //cookies已经存在
{
//获取浏览过的商品编号ID
historyp=$.cookie('smile1314h');
var check_result = $('#latestp');
check_result.html('');
//ajax 根据产品编号获取信息列表
$.ajax({ //一个Ajax过程
type: "get",
url : "/Comm/getLatestProduct.ashx",
dataType:'html',
data: "P_Id="+historyp,
success: function(json){
check_result.html("");
check_result.html(json);
}});
//分解字符串为数组
var pArray=historyp.split(',');
//最新访问的商品编号放置载最前面
historyp=nid;
//判断是该商品编号是否存在于最近访问的记录里面
for(var i=0;i{
if(pArray[i]!=nid)
{
historyp=historyp+","+pArray[i];
count++;
if(count==N-1)
{
break;
}
}
}
//修改cookie的值
$.cookie('smile1314h',historyp);
}


打包下载

文档

Jquery最近浏览过的商品的功能实现代码_jquery

Jquery最近浏览过的商品的功能实现代码_jquery: //与Prototype 类似的框架 //插件 代码如下: /*JCookie.js * / jQuery.cookie = function(name, value, options) { if (typeof value != 'undefined') { // name and value given, set cookie opti
推荐度:
标签: 实现 的功能 商品
  • 热门焦点

最新推荐

猜你喜欢

热门推荐

专题
Top