页面的js
//点击a标签增加删除 var i=0; $("#a").on("click",function(){ var $newtr = $("" +"" +"" +"" +"" +"" +"删除" +""); i++; $newtr.find(".del").click(function(){ $(this).parents("tr").remove(); }); $("#fourdiv").append($newtr); });
页面jsp
添加一个联系人
姓名 电话 传真 邮箱 职务 操作
action中接收直接用集合接收就好(遍历成对象来添加到数据库)
private ListcontactsList = new ArrayList ();//页面接收联系人的数组 public List getContactsList() { return contactsList; } public void setContactsList(List contactsList) { this.contactsList = contactsList; } //添加多条联系人 for(Contacts contacts:contactsList){ contacts.setCustomId(customs.getId()); this.customsService.addContacts(contacts); }