为什么鼠标移到label里没有显示div的内容<html> <head> <title>鼠标离开移入</title> <style> #a{ text-align:center; border:3px solid red; width:500px; height:500px; display:none; } </style> </head> <body> <script type="text/javascript"> function one(){ var a=getElementById("a"); a.style.display="block"; } </script> <label onMouseOver="one()">C.C</label> <div id="a"> <p>姓名:C.C</p> <p>性别:女</p> <p>年龄:未知</p> </div> </body></html>
添加回答
举报
0/150
提交
取消