Thread zugriff auf unbekannte id (12 answers)
Opened by Froschpopo at 2007-11-18 18:53

GwenDragon
 2007-11-18 19:28
#102539 #102539
User since
2005-01-17
14747 Artikel
Admin1
[Homepage]
user image
this.parentNode.id dürfte das wohl sein.

[html]<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="content-type" content="text/html;charset=utf-8">
<title>Titel</title>
<script type="text/javascript">
function Funktion(o) {
alert(o.parentNode.id);
}</script>
</head>

<body>
<ul>
<li id="mir_unbekannte_id"><a href="#" onClick="Funktion(this);">a</a></li>
</ul>
</body>

</html>
[/html]
this ist das aktuelle Element, welches das Event click ausgelöst hat, also a innehalb li. Deswegen ist li das Elternelement von a.

View full thread zugriff auf unbekannte id