var objTable=document.getElementById("tableDateG"); //获得table的对象
var Rows=objTable.rows.length;
tr=objTable.insertRow(); //添加行
tr.style.backgroundColor="#FFFFFF" ;//设置行的背景色
td=tr.insertCell(); //添加单元格
td.style.cssText="BORDER-BOTTOM: #4a75ce 1px solid"; //设置单元格的样式
td.innerHTML="<input name=button type=button />"; //添加td中的内容