Target via Javascript setzen?

tequito

Mitglied
Hallo,

wie kann ich bei dem folgenden Script noch mitgeben, dass es den Link im einem Frame mit dem Namen "frame_rechts" öffnen soll? Es ist eine Liste mit x Links.

PHP:
<li
  onmouseover="this.className='active';"
  onmouseout="this.className='';"
  onclick="window.location.href='rechts.php?id=1';"
>Linktext, Bild, anderer Text</li>
 
Hi,

schon mal mit
Code:
<li onmouseover="this.className='active';" onmouseout="this.className='';" onclick="top.frame_rechts.location.href='rechts.php?id=1';">Linktext, Bild, anderer Text</li>
versucht?

Ciao
Quaese
 
Das folgende Dokument funktioniert bei mir problemlos.
Code:
<?xml version="1.0" encoding="iso-8859-1"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
     "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<title>www.tutorials.de</title>
<meta name="author" content="Quaese" />
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
</head>
<body>
<ul>
  <li onmouseover="this.className='active';" onmouseout="this.className='';" onclick="top.frame_rechts.location.href='rechts.php?id=1';">Linktext, Bild, anderer Text</li>
</ul>
<iframe src="" name="frame_rechts"></iframe>
</body>
</html>
Ciao
Quaese
 

Neue Beiträge

Zurück