其他分享
首页 > 其他分享> > 还原任意加密网页

还原任意加密网页

作者:互联网


function decodehtml(){
    var s=document.documentElement.outerHTML;

    document.write('<body></body>');
    
    document.body.innerText=s;
    
    return s
}

decodehtml()```

调用方法为decodehtml()



标签:function,body,网页,documentElement,return,还原,加密,document,decodehtml
来源: https://blog.csdn.net/ymswx/article/details/122113830