有人可以帮助我完成我需要的两个功能。我想要一个函数从 cookie 字符串中获取属性值,以匹配控件 id,而另一个函数为控件 id 设置属性值。我的字符串看起来像这样
var cookieValue='id=1&state=normal&theme=purple:id=2&state=maximized&theme=pink';
对于每个控件属性,必须使用冒号 cookieValue.split (':') 分割字符串;并且在设置 propertyValue 时,必须更新 cookieString 并将其连接在一起,有人知道如何做到这一点。
功能看起来像这样
function setPropertyValue(cookieString, id, propertyName, propertyValue) {
if(id) setProperty_Value
return cookieString;
}
function getPropertyValue(cookieString, id, proprtyName) {
return propertyValue;
}