我有一个动态创建文本字段和文本字段标签的表单。当我使用this.form获取提交的信息时,我只得到文本字段,这意味着很少没有标签。
以下是文本的删节版本,我希望这已经足够了。如果有帮助我正在使用jQuery。
动态创建表单: /
/dynamically created based on choice options from a form
<input type="text" id="cV_'+curChoice+'" class="numeric" size="1" value="1"> <label for="cV_'+curChoice+'">'+curChoice+'</label><br><hr>'
<input class='action' id='saveButton' type='button' value='SAVE' onclick='saveChoices()' />
<script>
function saveChoices(){
var choiceNum = this.form;
}
答案 0 :(得分:0)
我想出了一个解决方案。我不得不在这个领域添加一个名字。
$('#choices').append('<input type="text" name="'+curChoice+'" class="numeric" size="1" value="1">'+curChoice+'<br><hr>');