Français
<!--把如下代码加入<body>区域中--> <SCRIPT LANGUAGE="JavaScript"> <!-- Commencer la fonction doColor(item, color, bg) { item.style.color = color; // change la couleur du texte item.style.backgroundColor = bg; // change l'arrière-plan } function undoColor(item) { item.style.color = "#000000"; // remet la couleur au noir item.style.backgroundColor = ""; // définit l'arrière-plan par défaut } // Fin --> </script> <a name="link1" href="http://www.internet.com/" onmouseover="doColor(link1, 'jaune',' noir');" onmouseout="undoColor(link1);">internet.com</a> <p> <a name="link2" href="http://www.downcodes.com/" onmouseover="doColor(link2, 'blue ','rouge');" onmouseout="undoColor(link2);">www.downcodes.com</a>