also ich habe eine tabelle programmiert und möcht nun das man den text einzelnen zellen ändern kann wenn man auf sie klick. ich höffe ihr könnt mir helfen wäre echt super.
hier mein bisheriger code:
<html>
<head>
<title>Tabelle</title>
</head>
<body>
<center>
<table border="1">
<caption>Tabelle</caption>
<th>Spalte 1</th><th>Spalte 2</th>
<tr>
<td onMouseOver="this.bgColor='#00C0C0'" onMouseOut="this.bgColor='#FFFFFF'">Zelle 1</td>
<td onMouseOver="this.bgColor='#00C0C0'" onMouseOut="this.bgColor='#FFFFFF'">Zelle 2</td>
</tr><tr>
<td onMouseOver="this.bgColor='#00C0C0'" onMouseOut="this.bgColor='#FFFFFF'">Zelle 3</td>
<td onMouseOver="this.bgColor='#00C0C0'" onMouseOut="this.bgColor='#FFFFFF'">Zelle 4</td>
</table></center>
</body>
</html>
mfg sk8eagle87



Zitieren