Divi
Erfahrenes Mitglied
Hi Leute - habe ne Funktion, die das hier aufruft:
-------------------------------------------------
t_newentry = document.createElement("div");
t_newentry.setAttribute("id", "entry1");
t_newentry.style.text = "irgendwas";
t_newentry.style.width = __width+"px";
t_newentry.style.height = __heigth+"px";
t_newentry.style.backgroundColor = "#cccccc";
t_newentry.style.position = "absolute";
t_newentry.style.top = __ypos+"px";
t_newentry.style.left = __xpos+"px";
t_newentry.onMouseOver = "alert('TEST')";
t_text = document.createTextNode(__schriftzug);
t_newentry.appendChild(t_text);
document.body.appendChild(t_newentry);
-------------------------------------------------
Nur: die Zeile von wegen .....onMouseOver = ... funktioniert nicht ... weiß einer, wie ich einem neuen Objekt diese Eigenschaft hizufügen kann?
-------------------------------------------------
t_newentry = document.createElement("div");
t_newentry.setAttribute("id", "entry1");
t_newentry.style.text = "irgendwas";
t_newentry.style.width = __width+"px";
t_newentry.style.height = __heigth+"px";
t_newentry.style.backgroundColor = "#cccccc";
t_newentry.style.position = "absolute";
t_newentry.style.top = __ypos+"px";
t_newentry.style.left = __xpos+"px";
t_newentry.onMouseOver = "alert('TEST')";
t_text = document.createTextNode(__schriftzug);
t_newentry.appendChild(t_text);
document.body.appendChild(t_newentry);
-------------------------------------------------
Nur: die Zeile von wegen .....onMouseOver = ... funktioniert nicht ... weiß einer, wie ich einem neuen Objekt diese Eigenschaft hizufügen kann?