1

HTMLボタンに割り当てられたjavascriptを使用したテキストボックスを持つ非表示のdivを表示しています。私の要件は

a - フォームの送信後、ユーザーが入力したデータをテキストボックスに保持する - それが可能

b - ユーザーがボタンを使用して 2 番目の非表示の div を追加し、+ Show anotherフォームを送信したら、そのテキスト ボックスをデータと共に表示したいと思います。データは保持できますが、div は表示されません (非表示の状態になります)。

私のhtmlコード:

<form  id="main" name="main" action="#text" method="post" > 
    <div class="wrap-quest-resp" id="fa1">
        <div class="input-resp"><span><input  class="textbox" id="collect-fa1" name="collect-fa1" type="text" value="<?php if(isset($_POST['collect-fa1'])) { echo htmlentities ($_POST['collect-fa1']); }?>" /></span> </div>                  
    </div>

    <div class="wrap-quest-resp" id="fa2" style="display:none;">
    <div class="input-resp"><span><input  class="textbox" id="collect-fa2" name="collect-fa2" type="text" value="<?php if(isset($_POST['collect-fa2'])) { echo htmlentities ($_POST['collect-fa2']); }?>" /></span> </div>                  
    </div>

    <div class="add_remove_column">
    <input  type="hidden" id="countfa" name="countfa" value="2" readonly>
    <button type="button" onClick="AddNewColumn();" id="addfa" > + Show another  </button>
    </div>


<input  id="generate" type="submit"  name="script" value="create my symcli script" />

</form> 

クリックすると非表示のdivを表示するjavascript+ Show another

function AddNewColumn() 
    {
        var facount = parseInt($('#countfa').val(),3) ;
        if( facount < 3)
            {
                facount = facount+1;

                for(i=1;i<3;i++)
                {
                    if( i<facount )
                        $('#fa'+i).slideDown("fast");
                    else
                        $('#fa'+i).slideUp("fast");                 
                }
                $('#countfa').val(facount);  

            }
} 
4

1 に答える 1