标签:http func jquery ima script min color opp otto
简单,直接放代码
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title></title>
<style>
button{
margin-left: 20px;
}
ul li{
margin-bottom: 10px;
}
</style>
</head>
<body>
<div class="box">
<button onclick="add()">添加</button>
<ul id="ul_li">
</ul>
</div>
</body>
<script src="js/jquery.min.js"></script>
<script>
function add(){
$("#ul_li").append(‘<li><input type="text" /><button onclick="del(this)">删除</button></li>‘)
}
function del(opp){
$(opp).parent().remove();
}
</script>
</html>

标签:http func jquery ima script min color opp otto
原文地址:https://www.cnblogs.com/wanan-01/p/9306475.html