关于Dreamweaver中的“显示-隐藏元素”问题 100
我创建一个层,将其可见性设为"hidden",添加行为“显示-隐藏元素”:当鼠标经过时,显示层中的内容;当鼠标移出时,隐藏层的内容。但是预览时却无法显示,不知道错在哪里?...
我创建一个层,将其可见性设为"hidden",添加行为“显示-隐藏元素”:当鼠标经过时,显示层中的内容;当鼠标移出时,隐藏层的内容。但是预览时却无法显示,不知道错在哪里?请高手指导下该怎么做。
我的代码如下:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
<style type="text/css">
<!--
#apDiv1 {
position:absolute;
left:399px;
top:282px;
width:158px;
height:108px;
z-index:1;
visibility: hidden;
}
-->
</style>
<script type="text/javascript">
<!--
function MM_showHideLayers() { //v9.0
var i,p,v,obj,args=MM_showHideLayers.arguments;
for (i=0; i<(args.length-2); i+=3)
with (document) if (getElementById && ((obj=getElementById(args[i]))!=null)) { v=args[i+2];
if (obj.style) { obj=obj.style; v=(v=='show')?'visible':(v=='hide')?'hidden':v; }
obj.visibility=v; }
}
//-->
</script>
</head>
<body>
<div id="apDiv1" onmouseover="MM_showHideLayers('apDiv1','','show')" onmouseout="MM_showHideLayers('apDiv1','','hide')">如何隐藏/显示文本</div>
</body>
</html>
效果有点类似,但始终不太一样,你的是对文本框的值进行操作,我是想对一个AP层进行操作。我看得懂你的代码,但是我还是不懂我的代码到底哪出了问题
能不能针对我的代码进行修改,这样好让我知道问题到底错在哪里,谢谢 展开
我的代码如下:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
<style type="text/css">
<!--
#apDiv1 {
position:absolute;
left:399px;
top:282px;
width:158px;
height:108px;
z-index:1;
visibility: hidden;
}
-->
</style>
<script type="text/javascript">
<!--
function MM_showHideLayers() { //v9.0
var i,p,v,obj,args=MM_showHideLayers.arguments;
for (i=0; i<(args.length-2); i+=3)
with (document) if (getElementById && ((obj=getElementById(args[i]))!=null)) { v=args[i+2];
if (obj.style) { obj=obj.style; v=(v=='show')?'visible':(v=='hide')?'hidden':v; }
obj.visibility=v; }
}
//-->
</script>
</head>
<body>
<div id="apDiv1" onmouseover="MM_showHideLayers('apDiv1','','show')" onmouseout="MM_showHideLayers('apDiv1','','hide')">如何隐藏/显示文本</div>
</body>
</html>
效果有点类似,但始终不太一样,你的是对文本框的值进行操作,我是想对一个AP层进行操作。我看得懂你的代码,但是我还是不懂我的代码到底哪出了问题
能不能针对我的代码进行修改,这样好让我知道问题到底错在哪里,谢谢 展开
1个回答
展开全部
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>无标题页</title>
</head>
<body>
<input id="Text1" value="请在这里输入用户名" type="text"
onmouseover="if(this.value=='请在这里输入用户名') this.value='';focus();"
onmouseout="if(this.value=='') this.value='请在这里输入用户名';" />
<input id="Text2" type="text" value="请在这里输入密码"
onmouseover="if(this.value=='请在这里输入密码') this.value='';focus();"
onmouseout="if(this.value=='') this.value='请在这里输入密码';" />
</body>
</html>
是这种效果么?
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>无标题页</title>
</head>
<body>
<input id="Text1" value="请在这里输入用户名" type="text"
onmouseover="if(this.value=='请在这里输入用户名') this.value='';focus();"
onmouseout="if(this.value=='') this.value='请在这里输入用户名';" />
<input id="Text2" type="text" value="请在这里输入密码"
onmouseover="if(this.value=='请在这里输入密码') this.value='';focus();"
onmouseout="if(this.value=='') this.value='请在这里输入密码';" />
</body>
</html>
是这种效果么?
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询