dw中怎么让文本域一开始是隐藏的 点击按钮出现
1个回答
展开全部
<html>
<head>
<meta http-equiv="content-type" content="text/html;charset=gb2312"/>
<script language="javascript">
function hide_show(){
var a=document.getElementById("111");
var b=document.getElementById("222");
if(b.value=="显示"){
a.style.display="block";
b.value="隐藏";
}else{
a.style.display="none";
b.value="显示";
}
}
</script>
</head>
<body>
<input type="text" id="111" value="" style="width:100px;height:20px;display:none;"/>
<input type="button" value="显示" id="222" onclick="hide_show();"/>
</body>
</html>
<head>
<meta http-equiv="content-type" content="text/html;charset=gb2312"/>
<script language="javascript">
function hide_show(){
var a=document.getElementById("111");
var b=document.getElementById("222");
if(b.value=="显示"){
a.style.display="block";
b.value="隐藏";
}else{
a.style.display="none";
b.value="显示";
}
}
</script>
</head>
<body>
<input type="text" id="111" value="" style="width:100px;height:20px;display:none;"/>
<input type="button" value="显示" id="222" onclick="hide_show();"/>
</body>
</html>
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询