Frames (JavaScript)

P

Platano

(Meine Muttersprache ist Spanisch)

Hallo!

Mein Problem ist:
ich habe 2 frames ("A" & "B"), "A" hat ein Button & ich will dass wenn ich das Button drücke eine neue Seite in "B" gezeig wird.

Kann jemand mir helfen?

Vielen Dank voraus

Platano.

Die Lösung ist:

<SCRIPT LANGUAGE="JavaScript">
<!--

function SuchenTabelle()
{
window.open("Suchen.htm","FrameName");
return true;
}

//-->
</SCRIPT>

<body>
<input type = "submit" value = " Suchen " onClick = "SuchenTabelle()" >
</body>
[Editiert von Platano am 14.05.2001 um 15:58]
 
;-)

das hat nix mit javascript zu tun sondern is pures einfaches basic html!!!

du gibst im A beim Link noch den tag target="namevomframe" ein!!!

also: <a href="dateidieaufderandernseitegeladenwerdensoll.htm" target="namevonframeB">

ok?
 
Zurück