将href添加到txthtml列

时间:2016-09-06 09:35:36

标签: javascript jquery html html5 dom

  • 我将Sql DB中的值绑定到动态html表。然后它 包含一个常量columun(Action),其中应包含地址 html表的所有行的特定门户。
  • 使用以下代码,我发现将href分配给<td>
  • 没有运气

任何人都可以帮助我如何解决这个问题

txtHTML = txtHTML + "<td>";
txtHTML = txtHTML + <a href="http://www.w3schools.com">Action</a>+ "</a>";
txtHTML = txtHTML + "</td>";

1 个答案:

答案 0 :(得分:1)

只需在代码中使用'txtHTML = txtHTML + "<td>"; txtHTML = txtHTML + "<a href='http://www.w3schools.com'>Action</a>"; txtHTML = txtHTML + "</td>"; 作为字符串

"rooms"

以上代码将为您提供帮助!