关于事件的问题

为什么鼠标移到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>


漫之旅
浏览 1242回答 2
2回答

漫之旅

看懂了,谢谢
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JavaScript