我正在构建调查,并且需要能够在另一个div中预览动态输入字段的创建过程。

例如,在这里我要创建文本输入(非常简单)并在单独的div中创建单选按钮:

$('#p_scnt, #p_scnt_' + i +'').live('click', function() {
            $('<p><label for="p_scnts"><input type="text" size="20" id="p_scnt_' + i +'" value="" placeholder="Input Value" /></label> <a href="#" id="removeObject">Remove</a></p>').appendTo(scntDiv);
            $('<p><input type="radio" value="' + crunchValue + '">' + crunchValue + '</p>').appendTo(crunchville);
            i++;
            return false;
    });


http://jsfiddle.net/crunchfactory/tZPg4/15947/

我不确定如何获取值,因此显然是“未定义”。

三件事:

我想从文本框中获取值,因为它们被键入到单独的div中的值。

我想在文本框中单击以创建一个新文本框,a)似乎只在顶部2起作用,b)如果一个框具有空值,则不要在另一个div中创建对象。

谢谢!

最佳答案

我想从文本框中获取值,因为它们被键入到
  单独的div中的值


我想这就是你的意思:)

的HTML

<button id="btn-add">Add</button>

<div id="source"></div>
<div id="preview"></div>


Java脚本

// --- Main functions --- //
function _createTextInput() {
  var inputWrapper = document.createElement('div');
  var inputElement = document.createElement('input');
  var removeBtn    = document.createElement('button');

  $(removeBtn)
    .html("Remove")
    .addClass("btn-remove-input-wrapper");

  $(inputWrapper)
    .addClass('input-wrapper')
    .append(inputElement)
    .append(removeBtn);

  return inputWrapper;
}

function _createRadioInput() {
  var radioWrapper = document.createElement('div');
  var radioElement = document.createElement('input');
  var radioLabel   = document.createElement('label');

  $(radioWrapper)
    .append(radioElement)
    .append(radioLabel);

  radioElement.type = 'radio';
  radioElement.name = 'group';
  return radioWrapper;
}

// --- Helper functions --- //

function getIndex(me) {
  return $(me).parent().index();
}

function getRadioElement(me) {
  return $('#radio div:nth-child(' + (getIndex(me) + 1) + ')');
}

// --- Event handlers --- //

$('#btn-add').click(function() {
  $('#source').append(_createTextInput());
  $('#radio').append(_createRadioInput());
});

$(document).on('click', '.btn-remove-input-wrapper', function() {
  getRadioElement(this).remove();
  $(this).parent().remove();
});

$(document).on('keyup', '.input-wrapper input', function() {
  var index = getIndex(this);
  var inputText = $(this).val();
  getRadioElement(this).children('label').html(inputText);
});


DEMO

关于javascript - 动态添加/删除输入字段并在单独的div中预览字段值,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/36722847/

10-11 06:14