ฉันมีผู้ทะเยอทะยานเพื่อรับค่าจากคุกกี้
ตอนนี้ผมมี 2 คุกกี้โดยชื่อและชื่อshares=
obligations=
ฉันต้องการทำให้ผู้ทะเยอทะยานนี้ได้รับค่าจากคุกกี้ภาระหน้าที่เท่านั้น
ฉันจะทำสิ่งนี้ได้อย่างไร ดังนั้นการfor
แยกข้อมูลออกเป็นค่าที่แยกจากกันและวางไว้ในอาร์เรย์
function getCookie1() {
// What do I have to add here to look only in the "obligations=" cookie?
// Because now it searches all the cookies.
var elements = document.cookie.split('=');
var obligations= elements[1].split('%');
for (var i = 0; i < obligations.length - 1; i++) {
var tmp = obligations[i].split('$');
addProduct1(tmp[0], tmp[1], tmp[2], tmp[3]);
}
}