美文网首页
关于web端的一些小知识(持续更新中...)

关于web端的一些小知识(持续更新中...)

作者: AgoniNemo | 来源:发表于2017-02-06 12:36 被阅读5次
    //这是用来观察title的变动的
        var target = document.querySelector('title');
        var observer = new window.WebKitMutationObserver(function(mutations) {
        mutations.forEach(function(mutation) {
        alert(target.innerHTML);});});
        observer.observe(target, {characterData: true,childList: true});
    
    //察看html的内容的
    document.documentElement.innerHTML
    

    相关文章

      网友评论

          本文标题:关于web端的一些小知识(持续更新中...)

          本文链接:https://www.haomeiwen.com/subject/sunyittx.html