1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
| <HTML>
<HEAD>
<SCRIPT language="Javascript">
function demarre()
{
var tl=document.getElementById("tapis");
alert(tl.getAttribute('alt'));
try
{ tl.setAttribute('alt')='toto';}
catch(e)
{alert(e)}
alert(tl.getAttribute('alt'));
} /* demarre */
</SCRIPT>
</HEAD>
<BODY onload="demarre()" bgColor="#444444">
<table >
<tr>
<td>
<img src="plateau.gif" id="tapis" alt="alt-tapis" style="width:80px;height:80px;margin-left:15px;margin-top:45px">
</td>
</tr>
</table>
</BODY>
</HTML> |