从jquery动态创建的对象中获取html字符串

时间:2016-03-30 17:21:44

标签: jquery datatables

我正在动态填充jQuery数据表。例如,columnData.push(10)按预期工作。但是,我需要创建一个动态文本框并将其推送到columnData数组。有没有办法将jquery对象转换为字符串?

$('<input/>').attr({ type: 'text', id: 'test', name: 'test', autofocus: 'true',value:flavorCount }

1 个答案:

答案 0 :(得分:0)

$("<input/>", {
    "type": 'text', 
    "id": 'test', 
    "name": 'test', 
    "value": flavorCount 
}).prop("outerHTML");