求教js大神,怎么让两个input的按钮,当点击第一个的时候,第二个input的按钮再出现。

就是三个input的按钮,只出现第一个按钮,当点击第一个后,第二个input的按钮再出现,点击第二个input后,第三个input按钮再出现。求教啊~~~... 就是三个input的按钮,只出现第一个按钮,当点击第一个后,第二个input的按钮再出现,点击第二个input后,第三个input按钮再出现。求教啊~~~ 展开
 我来答
0动感蚂蚁0
2016-05-13 · TA获得超过391个赞
知道小有建树答主
回答量:177
采纳率:100%
帮助的人:126万
展开全部
<body>
<input id="input1" value="" placeholder="input1"> <br />
<input id="input2" value="" placeholder="input2" style="display:none"> <br />
<input id="input3" value="" placeholder="input3" style="display:none">

<script>
  $('#input1').click(function(){
    $('#input2').show();
  });
  $('#input2').click(function(){
    $('#input3').show();
  });
</script>
</body>

是不是要这样的效果,自己引一下jquery.js

本回答被网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
izhishl
2016-05-13
知道答主
回答量:33
采纳率:0%
帮助的人:11万
展开全部

给按钮加上点击事件,

<!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>
<script>
function btn_block(btn_id){
document.getElementById(btn_id).style.display="block";
}
</script>
</head>

<body>
<form>
<input type="button" id="btn1" value="按钮1" onclick="btn_block('btn2');" />
<input type="button" id="btn2" value="按钮2" onclick="btn_block('btn3');" style="display:none;" />
<input type="button" id="btn3" value="按钮3" style="display:none;" />
</form>
</body>
</html>
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
方范贺高
2018-06-11 · TA获得超过168个赞
知道小有建树答主
回答量:248
采纳率:40%
帮助的人:49.2万
展开全部

<!DOCTYPE html>

<html>

<head>

<meta charset="UTF-8">

<title></title>

<style type="text/css">

div>input+input{

display: none;

margin-top: 20px;

}

</style>

</head>

<body>

<div>

<input type="button" class="btn" value="按钮1" />

<input type="button" class="btn" value="按钮2" />

<input type="button" class="btn" value="按钮3" />

</div>

</body>

<script type="text/javascript">

var child = document.getElementsByClassName("btn");

child[0].onclick = function () {

child[1].style.display='block';

};

child[1].onclick = function () {

child[2].style.display='block';

}

</script>

</html>

已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式