我有一个构建字符串的函数html
,然后使用该jquery.html()
方法插入该 html 字符串。我希望页面的结果只显示输出文本,而是显示所有内容,甚至是标签。
function updateTableCell(){
var removeDocForm = "<form action='"+docRemoveTarget+"'><a>remove</a></form><br>"
$('table tr').eq(docRowCount).find('td').eq(4).html(removeDocForm);
}
我希望remove
在渲染页面时会出现,但我看到了
<form action='docRemoveTarget'><a>remove</a></form><br>