읽기: function(key) {
if (!this._inited) {
새로운 오류 발생('읽기 전에 초기화하세요.');
}
return this._data[key ];
},
쓰기: function(key, value) {
var str = [];
if (!this._inited) {
throw new Error('쓰기 전에 초기화하세요.');
}
this._data[key] = value;
for (var k in this._data) {
str.push(escape(k) ':' escape(this._data[k]) );
}
window.name = str.join('|');
}
};