html - Tabelleninhalt dynamisch über mouseover ändern
grassi3000 05.06.2004 - 16:47 1537 9
grassi3000
radeon gefrierer
|
Hi, gibts eine Möglichkeit, den html text, der in ner tabellenzelle steht, über eine mouseover funktion zu ändern?
ich kann mit js zwar auf css eigenschaften zugreifen, und diese ändern, aber kann ich auch den text in ner tabelle damit ändern?
mfg grassi
|
X3ll
╰(*°▽°*)╯
|
Hm gibts da nicht so eine Funktion beim DHTML ?
|
that
ModeratorHoffnungsloser Optimist
|
Hi, gibts eine Möglichkeit, den html text, der in ner tabellenzelle steht, über eine mouseover funktion zu ändern? Ja.
|
grassi3000
radeon gefrierer
|
Ja. ich gebe zu, die frage so gestellt zu haben, dass diese antwort auch ausreicht, aber dennoch würde ich mich über hinweise, bzw. exakte angaben über diese funktion freuen
|
that
ModeratorHoffnungsloser Optimist
|
Zwar nicht Standard, aber von IE und Mozilla unterstützt: cell = document.getElementById(...); // oder wie auch immer du an die Zelle herankommst cell.innerHTML = "irgendwas"; ansonsten (DOM-konform, unter der Annahme dass nur ein Text in der Zelle steht): newnode = document.createTextNode("muh"); if (cell.hasChildNodes()) cell.removeChild(cell.firstChild); cell.appendChildNode(newnode); Weitere Infos: http://www.w3.org/TR/REC-DOM-Level-1/
|
that
ModeratorHoffnungsloser Optimist
|
|
grassi3000
radeon gefrierer
|
thx, werd mich mal da umsehen
|
tomstig
OC Addicted
|
HOPPS...HAB WAS FALSCHES GEPROGGTwarum so kompliziert?? es geht ja ganz einfach <table border="1" bordercolor="black">
<tr style="background-color: #7499fc">
<td width="200px" onmouseover="this.style.backgroundColor='#AAAABB'" onmouseout="this.style.backgroundColor='#7499fc'">
blabla
</td>
<td width="200px" onmouseover="this.style.backgroundColor='#AAAABB'" onmouseout="this.style.backgroundColor='#7499fc'">
blabla
</td>
<td width="200px" onmouseover="this.style.backgroundColor='#AAAABB'" onmouseout="this.style.backgroundColor='#7499fc'">
blabla
</td>
</tr>
<tr style="background-color: #BBCCff">
<td width="200px" onmouseover="this.style.backgroundColor='#CCDDFF'" onmouseout="this.style.backgroundColor='#BBCCff'">
blabla
</td>
<td width="200px" onmouseover="this.style.backgroundColor='#CCDDFF'" onmouseout="this.style.backgroundColor='#BBCCff'">
blabla
</td>
<td width="200px" onmouseover="this.style.backgroundColor='#CCDDFF'" onmouseout="this.style.backgroundColor='#BBCCff'">
blabla
</td>
</tr>
</table>
<br />
<br />
<br />
<table border="1" bordercolor="black">
<tr style="background-color: #7499fc" onmouseover="this.style.backgroundColor='#00ff12'" onmouseout="this.style.backgroundColor='#7499fc'">
<td width="200px">
blabla
</td>
<td width="200px">
blabla
</td>
<td width="200px">
blabla
</td>
</tr>
<tr style="background-color: #BBCCff" onmouseover="this.style.backgroundColor='#00ff12'" onmouseout="this.style.backgroundColor='#BBCCff'">
<td width="200px">
blabla
</td>
<td width="200px">
blabla
</td>
<td width="200px">
blabla
</td>
</tr>
</table>
Bearbeitet von tomstig am 07.06.2004, 22:27
|
tomstig
OC Addicted
|
grassi, das sollte jetzt stimmen: <table>
<tr>
<td onmouseover="this.innerText = 'owned!' ">
overclockers.at
</td>
</tr>
</table>
|
Rektal
Here to stay
|
warum so kompliziert??
es geht ja ganz einfach
<table border="1" bordercolor="black">
<tr style="background-color: #7499fc">
<td width="200px" onmouseover="this.style.backgroundColor='#AAAABB'" onmouseout="this.style.backgroundColor='#7499fc'">
blabla
</td>
<td width="200px" onmouseover="this.style.backgroundColor='#AAAABB'" onmouseout="this.style.backgroundColor='#7499fc'">
blabla
</td>
<td width="200px" onmouseover="this.style.backgroundColor='#AAAABB'" onmouseout="this.style.backgroundColor='#7499fc'">
blabla
</td>
</tr>
<tr style="background-color: #BBCCff">
<td width="200px" onmouseover="this.style.backgroundColor='#CCDDFF'" onmouseout="this.style.backgroundColor='#BBCCff'">
blabla
</td>
<td width="200px" onmouseover="this.style.backgroundColor='#CCDDFF'" onmouseout="this.style.backgroundColor='#BBCCff'">
blabla
</td>
<td width="200px" onmouseover="this.style.backgroundColor='#CCDDFF'" onmouseout="this.style.backgroundColor='#BBCCff'">
blabla
</td>
</tr>
</table>
Zwei improvemenste: a) Gecko-Browser koennen tr:hover b) Mit IE und CSS behaviors kannst auch sowas machen: tr { behavior: url(hover.htc); und da schreibst dann rein: <public:attach event="onmouseover" onevent="hoverIn()" />
<public:attach event="onmouseout" onevent="hoverOut()" />
<script language="jscript">
function hoverIn() {
this._realColor = this.currentStyle.backgroundColor;
this.runtimeStyle.backgroundColor = '#FEDB99';
}
function hoverOut() {
if (this._realColor) {
this.runtimeStyle.backgroundColor = this._realColor;
}
}
</script>
Vorteil: du musst deinen Mark-Up nicht mit unnoetigem Code cluttern, Browser cachen CSS und HTC files. Ich weiss, hat nix mit OF zu tun
|