我有一个函数,它有一个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;
}