hi,
var string = "Dies ist der Inhalt des Cookies; wert=7; wert2=8;"
preafix_string = string.substr(0,13);
if(preafix_string,indexOf(";")!=-1) {
semi_cut = preafix_string.split(";");
newString = semi_cut[0];
} else newString = preafix_string;so bekommst du entweder die ersten 13 zeichen, oder
- falls darin ein semikolon enthalten ist - alles bis
zum semikolon.HIH
mfg
comunicoutSo?
(Bis zum Komma!)if(document.cookie == indexOf(";")!=-1) {
semi_cut = preafix_string.split(";");
newString = semi_cut[0];
}
Oh, ich habe wohl ein paar Fehler gemacht:
var string = document.cookie;
if(string,indexOf(";")!=-1) {
semi_cut = string.split(";");
newString = semi_cut[0];
} else newString = string;
if(newstring == "wert=100;") {
document.write("Ein Teil des Cookies heißt: Wert=100");
}