我想在用户将鼠标移到一个 div 上时显示两个链接,然后在用户离开 div 时隐藏它们,我这样做:这里是
<div id="mydiv" style="background-color : red;width:100px;height:100px;position: relative;" >
<div id="subdiv1" style="position: absolute;" >
<a href="#" style="color:red;" >link 1</a>
</br><a href="#" style="color:red;" >link 2</a>
</div>
<div id="subdiv2" style="width:60px;height:60px;background-color : blue;" ></div
</div>
但没有结果
我怎样才能做到这一点
谢谢