创作个新网页 内容如下:
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>点击1</title>
<style type="text/css">
<!--
A:hover { BACKGROUND-POSITION: 50% bottom; LEFT: 1px; COLOR: #ff5a00; BACKGROUND-REPEAT: repeat-x; POSITION: relative; TOP: 1px }
-->
</style>
</head>
<body>
<a style="cursor:hand" onclick='window.open("Images/Pic/T010.jpg","_blank","width=743,height=522")'>点击1</a>
<a href="#">点击2</a>
</body>
</html>
我只是想点击“点击1”后,打开一个控制大小的窗口。 而当鼠标移动过“点击1”超连接的时候,会有像 点击2 一样 继承 a:hover 的那种效果。是不是要用到onmouseover 属性? 具体怎么做呢?