Javascript如何将String转换为HTMLTableRowElement?

时间:2017-06-24 13:12:52

标签: javascript jquery string replace

我有一个函数,它有一个HTMLTableRowElement参数作为输入,必须返回HTMLTableRowElement

但在我返回变量之前,我先将它转换为字符串,以便我可以替换其中的一些单词。

下面您将看到HTMLTableRowElement内容

的示例
var item = '<tr id="contacts_list_:id"><td id="contacts_id_:id" class="id"></td><td id="contacts_name_:id" class="name"></td><td id="contacts_city_:id" class="city"></td></tr>'; /* example */

下面你看一个函数的例子

function Converter(item){

/* convert HTMLTableRowElement to string to make changes */
var itemSource = item.innerHTML.replace(/:id/g, item['_values'].id);

/* Howto convert  itemSource  back to HTMLTableRowElement? */
return itemSource;
}

1 个答案:

答案 0 :(得分:0)

使用jquery append()方法解决此问题。