ボタンをクリックすると、テキストボックスとラジオボタンで新しい行が作成されます。ただし、ある行のラジオ ボタンをクリックすると、他の行の他のラジオ ボタンの選択が解除されます。
しかし、他のラジオボタンをクリックしてもラジオボタンが選択された状態を保ちたいです。
これは私のコードです:
<html>
<head>
<title>Add More Elements</title>
<script src="../practice/jquery.min.js"></script>
<script>
$(document).ready (function () {
$('.btnAdd').click (function () {
$('.buttons').append('<div><input type="text" name="txt">M<input type="radio" id="m" name="gender">F<input type="radio" id="f" name="gender"><input type="checkbox" name="txt"><br></div>'); // end append
}); // end click
}); // end ready
</script>
</head>
<body>
<p>This Is Create Textboxs Dinamically </p>
<div class="buttons">
<table><tr><td>Name:</td><td>Gender:</td><td>Choice:</td><td><input type="button" class="btnAdd" value="Click Me To Create TextBox"><br></td></tr>
<tr> <td><input type="text" name="txt"></td><td>M<input type="radio" id="m" name="gender">F<input type="radio" id="f" name="gender"></td><td><input type="checkbox" name="txt"></td><td></td> </tr>
</table>
</div>
</body>
</html>