Registriert seit: 11. Okt 2003
Ort: Elbflorenz
44.071 Beiträge
Delphi 12 Athens
|
Re: 'test.html?url=hallo' mit Javascript??
6. Mär 2004, 16:01
SELFHTML - location
Code:
test.html? url=hallo
if (window.location.search.substr(1, 4) == ' url=') {
document.write(window.location.search.substr(6, window.location.search.length));
}
oder ganz einfach:
Code:
test.html?hallo
document.write(window.location.search.substr(1, window.location.search.length));
Neuste Erkenntnis:
Seit Pos einen dritten Parameter hat,
wird PoSex im Delphi viel seltener praktiziert.
|