首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > Web前端 >

cookie 近来浏览记录(中文escape转码)

2013-03-27 
cookie 最近浏览记录(中文escape转码)history.jsvar JSON function(sJSON){ this.objType (typeof sJS

cookie 最近浏览记录(中文escape转码)

history.js

var JSON = function(sJSON){ this.objType = (typeof sJSON);if(this.objType=='string' && ''==sJSON){      sJSON = '{history:[]}' ;}    this.self = [];    (function(s,o){    for(var i in o){    o.hasOwnProperty(i)&&(s[i]=o[i],s.self[i]=o[i])    };})(this,(this.objType=='string')?eval('0,'+sJSON):sJSON);}JSON.prototype = {    toString:function(){        return this.getString();    },    valueOf:function(){        return this.getString();    },    getString:function(){        var sA = [];        (function(o){            var oo = null;            sA.push('{');            for(var i in o){                if(o.hasOwnProperty(i) && i!='prototype'){                    oo = o[i];                    if(oo instanceof Array){                        sA.push(i+':[');                        for(var b in oo){                            if(oo.hasOwnProperty(b) && b!='prototype'){                                sA.push(oo[b]+',');                                if(typeof oo[b]=='object') arguments.callee(oo[b]);                            }                        }                        sA.push('],');                        continue;                    }else{                        sA.push(i+':\''+oo+'\',');                    }                    if(typeof oo=='object') arguments.callee(oo);                }            }            sA.push('},');        })(this.self);        return sA.slice(0).join('').replace(/\[object object\],/ig,'').replace(/,\}/g,'}').replace(/,\]/g,']').slice(0,-1);    },    push:function(sName,sValue){        this.self[sName] = sValue;        this[sName] = sValue;    }}
加一个cookie 
addHistory("<%=uuid%>",escape("<%=factoryname%>"),escape("<%=name%>"),escape("<%=price%>"),escape("<%=catalogname%>"),escape("<%=img%>"),escape("<%=file_name%>"));

热点排行