"
对table表格的操作比较麻烦,一直字符串的连接会比较麻烦
var nod = cwgk_msg_list.insertRow();//这个是上边获取过的dom元素,一般是tbody的元素,对元素进行操作,
cell = nod.insertCell();
cell.setAttribute(""align"",""center"");
cell.innerHTML=json【i】.name;//名称 //这三部是必须的,第一不是增加一个表格,第二部设置表格的属性,第三部:为td赋值
cell = nod.insertCell();
cell.setAttribute(""align"",""center"");
//代码效果参考:https://v.youku.com/v_show/id_XNjQwNjg0MTQ1Ng==.html
cell.innerHTML=json【i】.description;//说明cell = nod.insertCell();
cell.setAttribute(""align"",""center"");
var sele=""1"";
cell.innerHTML= sele;//模板名称
cell = nod.insertCell();
cell.setAttribute(""align"",""center"");
if(json【i】.disabled == ""1"")
{
var option = '启用不启用';
}
else
{
var option = '启用不启用';
}
cell.innerHTML= """"+option+"""";//是否启用
cell = nod.insertCell();
// cell.setAttribute(""align"",""center"");
var sele=""""+op+"""";
cell.innerHTML= sele;//公众号
cell = nod.insertCell();
cell.setAttribute(""align"",""center"");
cell.setAttribute(""class"",""timeago"");
//代码效果参考:https://v.youku.com/v_show/id_XNjQwNjg1MDQ5Ng==.html
cell.setAttribute(""title"", json【i】.update);cell.innerHTML= json【i】.update;//更新时间
cell = nod.insertCell();
cell.setAttribute(""align"",""center"");
var btn='保存'
cell.innerHTML = btn;//保存按钮
希望自己写的东西能够对大家有所帮助!谢谢
"