<script>
var n=0;
$(".dj").on('click',function(){
n=$(this).parent().children(".box-center-content").children("table").length;;
console.log(n);
if(n>4){
alert("最多能添加5个二级菜单!");
}else{
$(this).parent().children(".box-center-content").append('<table><tr><td colspan="2">二级栏目</td></tr><tr><td>标题:</td><td><input type="text" value="" name="name"/><span class="classre">x</span></td></tr></table>');
}
});
var i=0;
$(".box-top").on('click',function(){
i++;
if(i>2){
}else{
$(".box").append($(".box .box-center:eq(0)").clone(true));
$(".box .box-center:eq("+i+") .box-center-top .box-center-content table:gt(0)").remove();
}
});
用下面的点击才能有点击事件
$("body").on("click",".classre", function(e){
$(this).parent().parent().parent().parent().remove();
});
</script>