标签:style class blog code color html
html页面代码
<table id="tblUserInfo"> </table>
Js代码
function DealUserInfo(qty){ if(qty>0) { var table1 = $("#tblUserInfo"); var rowCount= $("#tblUserInfo").find("tr").length; //添加1行 if(qty>rowCount) { var i = rowCount+1; var row = $("<tr></tr>"); var td = $("<td></td>"); var str = "td里面的内容"; td.append($(str)); row.append(td); table1.append(row); }else { //减少删除最后行 $("#tblUserInfo tr:last").remove(); } } }
Jquery Table添加行、删除行,布布扣,bubuko.com
标签:style class blog code color html
原文地址:http://www.cnblogs.com/lizeyan/p/3793220.html