Hallo Leute,
ich hab ein Problem mit Javascript, da ich in JS nicht so fit bin.
Trotzdem kommt es mir merkwürdig vor!
Ich habe eine Karte in der ich über onmouseover eine Funktion aufrufe, die eine Tabelle in einen Div Tag schreibt!
Jetzt spuckt mir der IE dort zwei Fehler aus:
1: Line 12 : Eine nicht abgeschlossene nochwas Konstante
2: Line 188: Erwartet ein Objekt
Nun kann ich aber leider keinen Fehler in meiner Syntax erkennen.
Vielleicht könntet ihr mir weiter helfen
Code:
Danke im Vorraus
ich hab ein Problem mit Javascript, da ich in JS nicht so fit bin.
Trotzdem kommt es mir merkwürdig vor!
Ich habe eine Karte in der ich über onmouseover eine Funktion aufrufe, die eine Tabelle in einen Div Tag schreibt!
Jetzt spuckt mir der IE dort zwei Fehler aus:
1: Line 12 : Eine nicht abgeschlossene nochwas Konstante
2: Line 188: Erwartet ein Objekt
Nun kann ich aber leider keinen Fehler in meiner Syntax erkennen.
Vielleicht könntet ihr mir weiter helfen
Code:
PHP-Code:
<html>
<head>
<link rel="stylesheet" type="text/css" href="mohr.css">
<title>Deutschlandkarte</title>
<script type="text/javascript">
function show(location){
if(location == 'birkenfeld')
{
top.document.all.infobox.innerHTML = '<table border="1" width="120">
<tr>
<td width="100%"><img border="0" src="www.schaly.de/irgendeinbild.jpg" width="100"></td>
</tr>
<tr>
<td width="100%">birkenfeld</td>
</tr>
<tr>
<td width="100%">0</td>
</tr>
<tr>
<td width="100%">Bahnhofstrasse 1500</td>
</tr>
</table>';
}
if(location == 'Irgend ein Ort')
{
top.document.all.infobox.innerHTML = '<table border="1" width="120">
<tr>
<td width="100%"><img border="0" src="www.bild.de" width="100"></td>
</tr>
<tr>
<td width="100%">Irgend ein Ort</td>
</tr>
<tr>
<td width="100%">99991</td>
</tr>
<tr>
<td width="100%">Irgend eine STrasse</td>
</tr>
</table>';
}
if(location == 'asdf')
{
top.document.all.infobox.innerHTML = '<table border="1" width="120">
<tr>
<td width="100%"><img border="0" src="Map.jpg" width="100"></td>
</tr>
<tr>
<td width="100%">asdf</td>
</tr>
<tr>
<td width="100%">12345</td>
</tr>
<tr>
<td width="100%">adf</td>
</tr>
</table>';
}
if(location == 'asdf')
{
top.document.all.infobox.innerHTML = '<table border="1" width="120">
<tr>
<td width="100%"><img border="0" src="Map.jpg" width="100"></td>
</tr>
<tr>
<td width="100%">asdf</td>
</tr>
<tr>
<td width="100%">12345</td>
</tr>
<tr>
<td width="100%">adf</td>
</tr>
</table>';
}
if(location == 'fghsfg')
{
top.document.all.infobox.innerHTML = '<table border="1" width="120">
<tr>
<td width="100%"><img border="0" src="Map.jpg" width="100"></td>
</tr>
<tr>
<td width="100%">fghsfg</td>
</tr>
<tr>
<td width="100%">12345</td>
</tr>
<tr>
<td width="100%">dfghfgh</td>
</tr>
</table>';
}
if(location == 'sfgs')
{
top.document.all.infobox.innerHTML = '<table border="1" width="120">
<tr>
<td width="100%"><img border="0" src="../images/filialen/TNbanner.jpg" width="100"></td>
</tr>
<tr>
<td width="100%">sfgs</td>
</tr>
<tr>
<td width="100%">12345</td>
</tr>
<tr>
<td width="100%">sadfgsdfg</td>
</tr>
</table>';
}
if(location == 'sdfg')
{
top.document.all.infobox.innerHTML = '<table border="1" width="120">
<tr>
<td width="100%"><img border="0" src="images/filialen/TNnavbar.jpg" width="100"></td>
</tr>
<tr>
<td width="100%">sdfg</td>
</tr>
<tr>
<td width="100%">12345</td>
</tr>
<tr>
<td width="100%">sdfg</td>
</tr>
</table>';
}
}
</script>
</head>
<body leftmargin="0" rightmargin="0" topmargin="0" bgcolor="#FFCC33">
<div align="center">
<map name="FPMap0">
<area onmouseover="javascript:show('birkenfeld')" shape="rect" coords="41, 326, 65, 345"></map><img src="images/Deutschland.jpg" border="0" usemap="#FPMap0" width="354" height="480">
</div>
</body>
</html>
Kommentar