div中删除指定元素


    

1


    

2


    

3


    

4


    

5





js:
function delete(){
 var childList = document.getElementById('div1').childNodes;
document.getElementById('div1').removeChild(childList[i]);
 }

jquery删除最后一个元素
$("#div1 p:last").remove();

删除第i-1个p标签

你可能感兴趣的:(前端)