如何从java脚本创建动态表?我从数据库中获取记录并存储到变量中并将该值添加到表格单元格。 在这里,我把一些文字没有实际价值。
在cs文件的按钮点击事件中,我这样做
StringBuilder sb = new StringBuilder();
sb.Append(@"<script language='javascript'>");
sb.Append("<table><tbody><tr><td>Information</td></tr></tbody></table>");
sb.Append(@"</script>");
if (!Page.ClientScript.IsClientScriptBlockRegistered(Page.GetType(), "HeyPopup"))
ClientScript.RegisterClientScriptBlock(Page.GetType(), "HeyPopup", sb.ToString());
但我无法看到信息。
答案 0 :(得分:1)
您必须在脚本中添加document.Write
so replace with
sb.Append("document.write('<table><tbody><tr><td>Information</td></tr></tbody></table>');");