Português
<!--把如下代码加入<body>区域中--> <SCRIPT LANGUAGE="JavaScript"> <!-- Begin function doColor(item, color, bg) { item.style.color = color; // altera a cor do texto item.style.backgroundColor = bg; // altera o plano de fundo } function undoColor(item) { item.style.color = "#000000"; //define a cor de volta para preto item.style.backgroundColor = ""; // define o plano de fundo como padrão } // End --> </script> <a name="link1" href="http://www.internet.com/" onmouseover="doColor(link1, 'yellow',' preto');" onmouseout="undoColor(link1);">internet.com</a> <p> <a name="link2" href="http://www.downcodes.com/" onmouseover="doColor(link2, 'blue ','vermelho');" onmouseout="undoColor(link2);">www.downcodes.com</a>