如何使用不同的ID动态创建输入元素?

时间:2015-04-28 19:11:30

标签: javascript jquery

我有使用JavaScript动态生成的输入。但是,我不确定如何向这些添加ID。让我说清楚:我想为每个人提供不同的ID,我知道如何为所有人添加一个id。

这是我尝试过的:

$(document).ready(function() { 
var wrapper         = $(".wayptHolder");      //Fields wrapper
var add_button      = $(".add_field_button"); //Add button ID
var x               = 0;                      //initial text box count

//add input element 
$(add_button).click(function(event){          
    event.preventDefault();
    if(x < 8){ 

      $(wrapper).append('<div><input type="text", id="waypt"' + x + ' class="form-control added-input", placeholder="Next"><a href="#" class="remove_field">Remove</a></div>');//add inputbox
        x++;
     }
});


    $(wrapper).on("click",".remove_field", function(event){ //user click on remove text
        event.preventDefault(); $(this).parent('div').remove(); x--;
    })
});

但是,在新元素上,它将id显示为waypt。我已经研究过,看起来JavaScript没有字符串插值。例如,Ruby可以解决这个问题,因为它能够使用#pt(#x),以便字符串将x解释为变量。 JS如何复制这种行为?

2 个答案:

答案 0 :(得分:7)

您的双引号未正确关闭:

if ($(this).is(":checked")) {
   var testing = $(this).prev().prev().prev().prev().prev().prev().next().next().html();
   console.log(testing);
   loop++;
}

会产生以下HTML:

$(wrapper).append('<input type="text", id="waypt"' + x + ' class="...

显而易见的解决方案是修复引号(并删除逗号):

<input type="text", id="waypt" 0 class="...
<input type="text", id="waypt" 1 class="...

但是,我会建议像:

$(wrapper).append('<input type="text" id="waypt' + x + '" class="...

答案 1 :(得分:0)

不确定我是否理解正确,但如果生成Id就是您所追求的,请尝试以下方法:

var date = new Date();
var ticks = date.getTime();

现在,ticks将为您提供一个非常唯一的数字,您可以将其连接到您的ID:

id = "waypt"+ticks;

希望有所帮助