嗨,我的任務是動態添加字段到表單,當我點擊一個鏈接。如何使用javascript創建動態單選按鈕
我是成功的文本字段,以及文件類型,但不是當我嘗試這樣做的輸入類型的單選按鈕。
假設我創建了兩行,並在一行中選擇性別,例如,男性,並在第二行我想選擇女性,然後它會消失從第一行的單選按鈕的值。所以我想爲不同的多行選擇不同的單選按鈕值。
這裏是我的代碼:
var counter = 0;
$(function(){
$('p#add_field').click(function(){
counter += 1;
$('#container').append(
'</br><strong>Item ' + counter + '</strong><br />'
+ '<input id="field_' + counter + '" name="item[]' + '" type="text" />'
+'<strong>quantity ' + counter + '</strong>'
+'<input class="qty" id="quantity' + counter + '" name="quantity[]' + '" type="text" />'
+'<strong>rate ' + counter + '</strong>'
+'<input id="rate' + counter + '" name="rate[]' + '" type="text" />'
+'<strong>Amount ' + counter + '</strong>'
+'<input id="field_' + counter + '" name="amount[]' + '" type="text" />'
+'<strong>img ' + counter + '</strong>'
+'<input id="field_' + counter + '" name="image[]' + '" type="file" />'
+'<strong>Gender ' + counter + '</strong>'
+'<input id="male_' + counter + '" name="gender[]' + '" type="radio" value="male"/>Male'
+'<input id="female_' + counter + '" name="gender[]' + '" type="radio" value="female"/>female'
);
});
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script src="custom.js"></script>
<h1>Add your Hobbies</h1>
<form method="post" action="save.php" enctype="multipart/form-data">
<div id="container">
<p id="add_field"><a href="#"><span>Add Field</span></a></p>
</div>
<input type="submit" name="submit_val" value="Submit" />
</form>
請讓我知道我錯了。
很高興幫助VARUN :) –