js动态生成表格

1、boday部分























保险起期(年) 保险止期(年) 缴费起期(年) 缴费止期(年) 价值佣金系数(%) 内部标保佣金系数(%) 外部标保佣金系数(%) 操作
添加


2、js部分
/* remove and add */
("#InputsWrapper"); //Input boxes wrapper ID
var AddButton = (AddButton).click(function (e) //on add input button click
{
if(x <= MaxInputs) //max input box allowed
{
FieldCount++; //text box added increment
FieldCounts++;
rowId++;
//add input box
(InputsWrapper).append('<tr id=tr'+ FieldCount +'><td> <input style=width:95px; type=\ '); x++; //text box increment } return false; });">("body").on("click",".removeclass", function(e){ //user click on remove text
if( x > 1 ) {
$(this).parent().parent().remove(); //remove text box ''
x--; //decrement textbox
}
return false;
})
});
3、效果图

图片.png

你可能感兴趣的:(js动态生成表格)