码迷,mamicode.com
首页 > Web开发 > 详细

在jsp页面动态添加,删除文本框模块

时间:2020-01-11 20:30:48      阅读:235      评论:0      收藏:0      [点我收藏+]

标签:ESS   required   input   代码   图片   bsp   pen   red   end   

技术图片

 

 jsp代码============

<table class="crud-content-info" >
<tr >
<td align="center" style="padding-left: 24%;">
<td><input type="button" onclick="addname()" value="添加"></input><input type="button" onclick="mnsname()" value="删除"></input></td>

</tr>
<tr style="height: 50px" id="namearea">
<td colspan="4">
<table style="width: 100%;">
<tr>
<td align="right" valign="middle">产品名称类别:</td>
<td>
<select name="productNameCategory" id="productNameCategory1" data-options="editable:false">
</select>
</td>
<td align="right" class="zb-ml-2">产品名称:</td>
<td>
<input type="text" name="productName" id="productName" style="margin-left: 10px" />
</td>
</tr>
</table>
</td>
</tr>
</table>

js代码============

//添加
function addname() {
$("#namearea").parent().append(
`<tr style="height: 50px" id="namearea" >
<td colspan="4">
<table style="width:100%;">
<tr>
<td align="right" valign="middle">产品名称类别: </td>
<td><select class="zb-ml-1" id="productNameCategory`+$("#namearea").parent().children().length +`" type="text" name="productNameCategory" ></select> </td>
<td align="right" class="zb-ml-2">产品名称:</td>
<td><input style="margin-left: 10px" id="productName`+$("#namearea").parent().children().length +`" type="text" name="productName" /></td>
</tr>
</table>
</td>
</tr>`);

var url=‘<%=basePath%>xyData/xySelecteHealthDit/xySelecteHealthDit.do?tip_id=‘
var c=$("#namearea").parent().children().length-1;
HydUtilLoadSellect(url,$(‘#productNameCategory‘+c),215);
$(‘#ProductName‘+c).validatebox({
required: true
});
if($("#namearea").parent().children().length > 5){
$.messager.alert(‘提示‘,‘最多添加5项!‘,‘info‘);
}
};
//删除
function mnsname() {
if($("#namearea").parent().children().length > 2){
$("#namearea").parent().children().last().remove();
}else{
//alert("至少保留一项");
$.messager.alert(‘提示‘,‘至少保留一项!‘,‘info‘);
}
//$("#namearea>*:last").remove();
};

在jsp页面动态添加,删除文本框模块

标签:ESS   required   input   代码   图片   bsp   pen   red   end   

原文地址:https://www.cnblogs.com/xianz666/p/12180859.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!