Español
<!--把如下代码加入<cuerpo>区域中--> <SCRIPT LANGUAGE="JavaScript"> <!-- Comenzar función doColor(item, color, bg) { item.style.color = color; // cambia el color del texto item.style.backgroundColor = bg; // cambia el fondo } function undoColor(item) { item.style.color = "#000000"; // restablece el color a negro item.style.backgroundColor = ""; // establece el fondo predeterminado } // Fin --> </script> <a name="link1" href="http://www.internet.com/" onmouseover="doColor(link1, 'amarillo',' negro');" onmouseout="undoColor(link1);">internet.com</a> <p> <a name="link2" href="http://www.downcodes.com/" onmouseover="doColor(link2, 'azul ','rojo');" onmouseout="undoColor(link2);">www.downcodes.com</a>