初学菜鸟求高手看看,为什么这个代码在IE下没问题,在火狐和360下报错
<style>#div1{height:200px;width:200px;background:gray;display:none;}</style><script>f...
<style>
#div1{
height:200px;
width:200px;
background:gray;
display:none;
}
</style>
<script>
function show(){
document.getElementById('div1').style.display='block';
}
function hidden()
{
document.getElementById('div1').style.display='none';
}
</script>
</head>
<body>
<input type="button" value="按钮" onMouseOut="hidden()" onMouseOver="show()">
<div id="div1" >
</div>
火狐报错:hidden is not a function,360报错: boolean is not a function 展开
#div1{
height:200px;
width:200px;
background:gray;
display:none;
}
</style>
<script>
function show(){
document.getElementById('div1').style.display='block';
}
function hidden()
{
document.getElementById('div1').style.display='none';
}
</script>
</head>
<body>
<input type="button" value="按钮" onMouseOut="hidden()" onMouseOver="show()">
<div id="div1" >
</div>
火狐报错:hidden is not a function,360报错: boolean is not a function 展开
1个回答
展开全部
可以试试把hidden换个名字,可能与系统保留名称冲突
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询