我有一个jsp页面,其中包含一个包含以下元素的表单:
<form class="form-inline" role="form" action="CadsInsertion" method="POST">
<div id="formItems" class="form-group">
<input type="text" id="date" name="date" placeholder="Date"><label class="btn btn-danger" id="_date">-</label>
</div>
<div class="col-lg-6 col-lg-offset-3">
<button id="submit" type="submit" class="btn btn-warning btn-lg">Submit</button>
</div>
</form>
在加载页面时,我使用以下jQuery添加更多从我的Servlet FormElements
获取的元素。
$(document).ready(function() {
$.ajax({
url: "FormElements",
data: {docType: "<%=session.getAttribute("docType")%>"},
success: function(data) {
if(data != null) {
$("#formItems").append(data);
}
}});
});
我在servlet中基本上做的是处理来自ajax调用的数据并相应地写一些jsp元素。为简单起见,我将省略Servlet实现,只是跳到输出。
执行ajax代码后,新元素将添加到formItems
部门:
<input id="Image" type="text" placeholder="Image" name="Image">
<label id="_Image" class="btn btn-danger">-</label>
<br>
<input id="Format" type="text" placeholder="Format" name="Format">
<label id="_Format" class="btn btn-danger">-</label>
<br>
<input id="Type" type="text" placeholder="Type" name="Type">
<label id="_Type" class="btn btn-danger">-</label>
现在我的问题是,我使用以下jQuery从表单中删除元素:
$("label").click(function(e) {
var item = e.target.id;
item = item.replace("_", "");
$("#" + item).remove();
e.target.remove();
});
但这仅适用于已在页面中静态定义的元素,不适用于使用ajax加载的元素。这是为什么?
答案 0 :(得分:2)
添加元素后,需要将处理程序重新绑定到它或使用jQuery的on()函数。
您需要delegate the event到页面中最近的静态祖先元素(另请参阅&#34; Understanding Event Delegation&#34;)。这只是意味着,绑定事件处理程序的元素必须在绑定处理程序时已存在,因此对于动态生成的元素,您必须允许事件冒泡并进一步处理它。
使用此
// instead of document you can use any parent element selector which is static(does not appended)
$(document).on("click","label",(function(e) {
var item = e.target.id;
item = item.replace("_", "");
$("#" + item).remove();
e.target.remove();
});
答案 1 :(得分:1)
$("#formItems").on('click', 'label', function(e) {
var item = e.target.id;
item = item.replace("_", "");
$("#" + item).remove();
e.target.remove();
});
答案 2 :(得分:0)
$(".form-inline").on('click', 'label', function(e) {
var item = e.target.id;
item = item.replace("_", "");
$("#" + item).remove();
e.target.remove();
});