js 控制 div 不好用。求解决!
<scriptlanguage="javascript"type="text/javascript">functionchangeselect(idname){varim...
<script language="javascript" type="text/javascript">
function changeselect(idname){
var image = document.getElementById(idname);
if (sqlArea.style.display=='none'){
sqlArea.style.display='block'; }
else{
sqlArea.style.display='none';
}
return;
}
</script>
<div style=" margin-right:10px; z-index:10; background-color:Red ;position:relative;" id="entername";onmouseout ="changeselect(aa)"; onmouseover="changeselect(aa)">
底层DIV
<div id='aa' style=" margin:10px; z-index:90; background-color:Yellow;">
上层DIV
<input id="Button1" type="button" value="button" onclick="changeselect(aa)"//>
</div>
</div> 展开
function changeselect(idname){
var image = document.getElementById(idname);
if (sqlArea.style.display=='none'){
sqlArea.style.display='block'; }
else{
sqlArea.style.display='none';
}
return;
}
</script>
<div style=" margin-right:10px; z-index:10; background-color:Red ;position:relative;" id="entername";onmouseout ="changeselect(aa)"; onmouseover="changeselect(aa)">
底层DIV
<div id='aa' style=" margin:10px; z-index:90; background-color:Yellow;">
上层DIV
<input id="Button1" type="button" value="button" onclick="changeselect(aa)"//>
</div>
</div> 展开
2个回答
展开全部
<input id="Button1" type="button" value="button" onclick="changeselect(aa)"//>
改成:
<input id="Button1" type="button" value="button" onclick="changeselect('aa')"/>
传进去的参数应该用引号包含起来,表示是一个字符串,因为document.getElementById()这个方法的参数要求是字符串类型的。
还有,个人认为在这个js函数里的reurn是没有意义的。
改成:
<input id="Button1" type="button" value="button" onclick="changeselect('aa')"/>
传进去的参数应该用引号包含起来,表示是一个字符串,因为document.getElementById()这个方法的参数要求是字符串类型的。
还有,个人认为在这个js函数里的reurn是没有意义的。
展开全部
js这样改一下
<script language="javascript" type="text/javascript">
function changeselect(idname){
var sqlArea= document.getElementById(idname);
if (sqlArea.style.display=='none'){
sqlArea.style.display='block'; }
else{
sqlArea.style.display='none';
}
return;
}
</script>
<script language="javascript" type="text/javascript">
function changeselect(idname){
var sqlArea= document.getElementById(idname);
if (sqlArea.style.display=='none'){
sqlArea.style.display='block'; }
else{
sqlArea.style.display='none';
}
return;
}
</script>
追问
不管用。我很纠结。明明我看着都是对的呀
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询