使用jquery增加、删除html文档节点
jquery相对亦js来说在对DOM文档操作来说非常方便,本文主要讨论使用jquery对html文档中节的删除
如上图,因为是急救电话数量是不确定的,因此需要能够灵活地添加和删除,因此就需要用jquery来对节点进行操作。
代码在附件中,可以正常执行,这里只是对节点的增加和删除中部分代码,其他类似操作可以在此基础上进行修改操作既可以实现。
主要代码如下所示,主要是最后的jquery代码注意要引用jquery才可正常执行的:
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Insert title here</title>
<script type="text/javascript" src="jquery-1.7.2.min.js"></script>
</head>
<body>
<div class="clear" style="padding:15px;">
<span style="margin-left:15px;">急救电话</span>
<input class="fl-r" type="button" value="添加" onClick="addJJDH()"/>
</div>
<div style="margin-left:40px;margin-top:20px;" id="lxdh">
<div style="padding:10px;">
<span style="margin-top:20px;">急救电话1:</span><input name="emgcall" class="jjdh" type="text" />
<a href="#" src="" alt="删除" /></a>
</div>
</div>
</body>
<script>
function addJJDH(){
var n= $(".jjdh").size() + 1;
$("#lxdh").append(‘<div style="padding:10px;">‘ +
‘<span style="margin-top:20px;">急救电话‘+ n + ‘:</span><input name="emgcall" class="jjdh" type="text" /> ‘ +
‘<a href="#" src="${pageContext.request.contextPath}/houtai/images//cross.png" alt="删除" /></a></div>‘);
}
function deleteJJDH(node){
$("#lxdh>div:last-child").remove();
}
</script>
</html>
本文出自 “随波不逐流” 博客,请务必保留此出处http://cnhadjb.blog.51cto.com/5274430/1534190
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。