한국어
<!--把如下代码加入<body>区域中--> <SCRIPT LANGUAGE="JavaScript"> <!-- 시작 함수 doColor(item, color, bg) { item.style.color = color; // 텍스트 색상을 변경합니다. item.style.BackgroundColor = bg; // 배경 변경 } function undoColor(item) { item.style.color = "#000000"; // 색상을 다시 검은색으로 설정 item.style.BackgroundColor = ""; // 배경을 기본값으로 설정 } // 끝 --> </script> <a name="link1" href="http://www.internet.com/" onmouseover="doColor(link1, 'yellow',' 검은색');" onmouseout="undoColor(link1);">internet.com</a> <p> <a name="link2" href="http://www.downcodes.com/" onmouseover="doColor(link2, 'blue ','빨간색');" onmouseout="undoColor(link2);">www.downcodes.com</a>