Thread zugriff auf unbekannte id
(12 answers)
Opened by Froschpopo at 2007-11-18 18:53
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. |