Thread target auf anderes fenster: ohne javascript
(4 answers)
Opened by pq at 2005-05-31 18:13
[quote=GwenDragon,31.05.2005, 16:20]Wenn ein ein über das Hauptfenster geöffnetes Fenster das A ist, dann mit target="A" ;)[/quote]
eben nicht. du öffnest im browser A.html. dann hat das fenster natürlich keinen namen/keine ID. damit geht es nicht. Quote _parent steuert den eltern-frame an. aber ich habe ja keine frames. beispiel: A.html: [html]<html><head><title>A</title></head> <body> A<br> <a href="B.html" target="B">B</a> </body> </html>[/html] B.html: [html]<html><head><title>B</title></head> <body> B<br> <a href="C.html" target="???">C</a> </body> </html> [/html] Always code as if the guy who ends up maintaining your code will be a violent psychopath who knows where you live. -- Damian Conway in "Perl Best Practices"
lesen: Wie frage ich & perlintro brian's Leitfaden für jedes Perl-Problem |