通过jquery将单选按钮的值设置为最近输入文本中的文本

时间:2013-03-25 14:08:07

标签: javascript html jquery-ui jquery

我有一个表单,我动态添加表单元素。我添加的元素是文本字段和单选按钮。现在,我希望所选单选按钮的值是用户在相邻输入框中键入的文本。这是JS:

var $node = "";
var varCount=0; 

$('body').on('click', '.removeVar', function(){        
    $(this).parent().remove();
    varCount--;
});
$('#addfld').on('click', function(){
    varCount++;
    $node = '<label for="losfldlbl[]">Field Name '+varCount+': </label>' +
            '<input type="text" name="losfldlbl[]" id="losfldlbl[]" title="Custom field name cannot be blank" required=true placeholder="Field name'+varCount+'"/>'+
            'Is this the value field? &nbsp;<input type="radio" name="losvaluefld[]" id="losvaluefld[]" value=false />&nbsp;&nbsp;'+
            '<span class="removeVar label label-important"><a id="removeFld" href="#" title="Click here to remove this field"><i class="icon-minus icon-white"></i></a></span>';

    $(this).parent().before($node);
});
$('input:radio').click(function() {
    $(this).attr('value', $(this).prev().attr("value"));
    alert($(this).val());
});

这是我的HTML:

<form id='myForm'>
click on the yellow button custom fields &nbsp;&nbsp;&nbsp;<span class='label label-warning'><a id='addfld' href='#' title='Click here to add a new field'><i class='icon-plus icon-white'></i></a></span>&nbsp;    
</form>

我分享了JsFiddle here。问题是我无法将从输入文本传递的值传递到单选按钮的值。

1 个答案:

答案 0 :(得分:1)

问题是你在页面上的单选按钮之前选择单选按钮并附加事件处理程序。

我建议使用on委托将来添加的单选按钮的事件:

$(document.body).on('click', 'input:radio', function() {
  $(this).attr('value', $(this).prev().attr("value"));

    alert($(this).val());
});

更新示例: http://jsfiddle.net/Pyj7K/2/