98
{alert("请先设置欲保存的cookie名称!");
99
this.init();
100
return false;
101
}
102
if(this.key.match(/[,; ]/))
103
{alert("cookie名称中不能包含“,”、“;”或空格!");
104
this.init();
105
return false;
106
}
107
if(this.value.tostring().match(/[,; ]/)||typeof(this.value)=="undefined")
108