DOMNodeInserted,DOMNodeRemoved 和監聽內容變化插件


元素的增加 刪除 及事件監聽

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>Document</title>
</head>
<body>
    <div>
        點擊添加li
    </div>
    <ul>
        <li>kkkk</li>
    </ul>
    <button>
        點擊刪除節點
    </button>
</body>
<script>
    var ul = document.getElementsByTagName('ul')[0]
    document.getElementsByTagName('div')[0].onclick = function () {//添加元素
        var li=document.createElement('li');
        var t=document.createTextNode('666')
        li.appendChild(t)

        ul.appendChild(li)
    }
    document.getElementsByTagName('button')[0].onclick = function () {//刪除元素
        ul.removeChild(ul.lastElementChild)

       
    }

    ul.addEventListener('DOMNodeInserted',function () {
       console.log(ul.childElementCount)
        
    })
    ul.addEventListener('DOMNodeRemoved',function () {
       console.log(ul.childElementCount)
        
    })

</script>
</html>

  

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM