我正在动态填充jQuery数据表。例如,columnData.push(10)按预期工作。但是,我需要创建一个动态文本框并将其推送到columnData数组。有没有办法将jquery对象转换为字符串?
$('<input/>').attr({ type: 'text', id: 'test', name: 'test', autofocus: 'true',value:flavorCount }
答案 0 :(得分:0)
$("<input/>", {
"type": 'text',
"id": 'test',
"name": 'test',
"value": flavorCount
}).prop("outerHTML");