Deutsch
<!--把如下代码加入<body>区域中--> <SCRIPT LANGUAGE="JavaScript"> <!-- Begin function doColor(item, color, bg) { item.style.color = color; // ändert die Textfarbe item.style.backgroundColor = bg; // ändert den Hintergrund } function undoColor(item) { item.style.color = "#000000"; // setzt die Farbe wieder auf Schwarz item.style.backgroundColor = ""; // setzt Hintergrund auf Standard } // Ende --> </script> <a name="link1" href="http://www.internet.com/" onmouseover="doColor(link1, 'gelb',' Schwarz');" onmouseout="undoColor(link1);">internet.com</a> <p> <a name="link2" href="http://www.downcodes.com/" onmouseover="doColor(link2, 'blue ','Rot');" onmouseout="undoColor(link2);">www.downcodes.com</a>