如何将 JavaScript 变量分配给 HTML 标签?
How to assign JavaScript variable to HTML tag?
我想将我的 id 变量作为 id 分配给我的 select 标签,如下所示。我怎样才能正确地做到这一点?
var id = 0;
$('#section2').append("<div><select id='" + id + "' class='form-control' name='rendezo_neve[]' style='max-width:90%'>" + $.get("php/getElements.php", function(data) {
$('#' + id).html(data)
}) + "</select><input type='button' value='X' class='remove_field' style='float:right;position:relative;top:-34px;right:-12px;font-size:12px;height:33px;width:33px;font-weight:bold;color:red;background-color:white;border:1px solid lightgrey;border-radius:50%'></input></div>");
您可以使用此代码 $('select[name=' + name + ']').attr('id', id)
。首先,select 您的 select 使用名称下拉,然后使用其值设置 ID 属性。
我想将我的 id 变量作为 id 分配给我的 select 标签,如下所示。我怎样才能正确地做到这一点?
var id = 0;
$('#section2').append("<div><select id='" + id + "' class='form-control' name='rendezo_neve[]' style='max-width:90%'>" + $.get("php/getElements.php", function(data) {
$('#' + id).html(data)
}) + "</select><input type='button' value='X' class='remove_field' style='float:right;position:relative;top:-34px;right:-12px;font-size:12px;height:33px;width:33px;font-weight:bold;color:red;background-color:white;border:1px solid lightgrey;border-radius:50%'></input></div>");
您可以使用此代码 $('select[name=' + name + ']').attr('id', id)
。首先,select 您的 select 使用名称下拉,然后使用其值设置 ID 属性。