複数の入力フィールドがあります。私は一度に一つだけを見せたいだけです。ユーザーが情報の入力を完了し、次のボタンを押すと、最初の入力が非表示になり、2番目の入力が表示されます。彼らは再び次のヒット時に2番目の入力を非表示にし、3番目の入力を表示します。私はhide()/ show()JQuery関数で直接divと入力フィールドを隠そうとしましたが、動作させるように見えません。ここでは、私が使用している構造の基本的な例は、任意の入力が大歓迎です。onclickなどの入力フィールドを非表示にする
編集:JSBINとサンプルコードを、私が試した方法に更新しました。
JSBIN: http://jsbin.com/wixiyaraxi/edit?html,output
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>JS Bin</title>
</head>
<body>
<!-- // should be VISABLE at the start and be HIDDEN when Next button is clicked. -->
<div id="test1">
<input type="text" id="test1" class="form-control" placeholder="Input 1:">
</div>
<!-- // should be HIDDEN at the start and be VISABLE when Next button is clicked. -->
<!-- // when the Next button is clicked a second time should be HIDDEN.-->
<div id="test2">
<input type="text" id="test2" class="form-control" placeholder="Input 2:">
</div>
<!-- // should be hidden at the start and show when Next button is clicked a second time. -->
<div id="test3">
<input type="text" id="test3" class="form-control" placeholder="Input 3:">
</div>
<button type="button" class="btn btn-warning">Next</button>
</div>
</body>
</html>
<script>
$("#button").click(function(){
$("#test1").hide();
$("#test2").show();
})
</script>
を示し、それを隠して、現在の目に見える.input div要素を取得する:あなたは場所で、あなたのボタンのクリックハンドラは、のような単純なものができることをしたら使用する。これを含めるには質問を更新してください。そうでない場合は、[トピックオフ(#1)](トピック/ /ヘルプ/トピック)として閉じる必要があります – zzzzBov