<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gd2312">
<title>制作我的第一个网页</title>
</head>
<body>
<h1>标题1</h1>
<p id="p1" style="color:red" onmousedown="onmousedown()" onmouseup="onmouseup()"><u>编程词典网</u> </p> <!--设置一个超链接-->
<script language="javascript">
function mousedown(event) <!--鼠标按下时调用函数-->
{
var e=window.event;
var obj=e.srcElement;
obj.style.color=‘green’;}
function mouseup(event) <!--鼠标松开时调用函数-->
{
var e=window.event;
var obj=e.srcElement;
obj.style.color=‘red’;
window.open("","编程词典网","") <!--改变颜色并打开一个新窗口-->
}
</script>
</body>
</html>