当我单击按钮时,会使用文本框和单选按钮创建一个新行。但是在单击某一行中的单选按钮时,其他行的其他单选按钮将被取消选择。
但是即使单击其他单选按钮,我也希望保持单选按钮处于选中状态。
这是我的代码:
<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>