nbsp; this.init();
128
return true;
129
}
130
this.get=function(key)//取得名为key的cookie的值
131
{if(key==""||key.match(/[,; ]/))
132
{alert("请正确设置欲查找的cookie名称!")
133
return false;
134
}
135
var cookie=document.cookie;
136
var start=cookie.indexof(key+"=");
137
if(start==-1)
138
&