gpt4 book ai didi

javascript - 通过数据表添加具有唯一ID的动态输入标签

转载 作者:行者123 更新时间:2023-12-03 08:11:13 25 4
gpt4 key购买 nike

我能够根据行创建输入标记,但无法为每个输入字段添加唯一的 ID。

这是代码:

$(document).ready(function() {
var oTable = $('#jsontable').dataTable(); //Initialize the datatable
$.ajax({
url: 'process.php?method=fetchdata',
data: 'json',
dataType: 'json',
success: function(s){
oTable.fnClearTable();
for(var i = 0; i < s.length; i++) {
oTable.fnAddData([s[i]['productTitle'],s[i]['sku'],s[i]['name'],s[i]['pricePerUnit'],s[i]['code'],'<input type="text" id="quantity"+i+/>',]);
}
},
error: function(e){
console.log(e.responseText);
}
});
});

我强调哪个字段应该是动态的。

oTable.fnAddData([s[i]['productTitle'],s[i]['sku'],s[i]['name'],s[i]['pricePerUnit'],s[i]['code'],' type="text" id="quantity"+i+/>',]);

请提出任何建议。

谢谢赛

最佳答案

更改'<input type="text" id="quantity"+i+/>''<input type="text" id="quantity'+i+'"/>'

关于javascript - 通过数据表添加具有唯一ID的动态输入标签,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34136060/

25 4 0