Thread JavaScript - Problem mit "display" (9 answers)
Opened by renee at 2006-12-14 14:15

renee
 2006-12-14 14:15
#24941 #24941
User since
2003-08-04
14371 Artikel
ModeratorIn
[Homepage] [default_avatar]
Ich habe folgende HTML-Datei:
Code: (dl )
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<?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" lang="de" xml:lang="de">
<head>
<style type="text/css">

.content_div{
position : absolute;
top : 290px;
left : 140px;
display : none;
}
</style>

<script type="text/javascript">
function show_content(id){
var parent = document.getElementById("content_divs");

for(i = 0; i < parent.childNodes.length; i++){
node = parent.childNodes[i];
node.style.display = "none";
}

document.getElementById(id).style.display = "block";
}
</script>
</head>
<body>

<div class="container">
<div class="content">
<table>
<tr>
<td><span class="content_list"
onclick="show_content('12');"><a href="#12">Test</a></span></td>
</tr>
<tr>
<td><span class="content_list"
onclick="show_content('119');"><a href="#119">Test</a></span></td>
</tr>
</table>

<div id="content_divs">
<div class="content_div" id="12" >
<h3>Test</h3>
Testartikel
</div>
<div class="content_div" id="119" >
<h3>Test</h3>
Dies ist ein Testartikel
</div>
</div>
</div>
</body>
</html>


Dies funktioniert im InternetExplorer einwandfrei, bei Firefox (1.0) bekomme ich die folgende Fehlermeldung:
Code: (dl )
1
2
3
Error: node.style has no properties
Source File: http://localhost/foo.html#119
Line: 23


Was mache ich falsch?
OTRS-Erweiterungen (http://feature-addons.de/)
Frankfurt Perlmongers (http://frankfurt.pm/)
--

Unterlagen OTRS-Workshop 2012: http://otrs.perl-services.de/workshop.html
Perl-Entwicklung: http://perl-services.de/

View full thread JavaScript - Problem mit "display"