美文网首页
web移动端调试工具-Eruda

web移动端调试工具-Eruda

作者: 鲲鹏DP | 来源:发表于2019-04-30 17:09 被阅读0次

    1、集成

    • npm:
    npm install eruda --save
    
    • CDN
    <script src="//cdn.bootcss.com/eruda/1.3.0/eruda.min.js"></script> 
    <script>eruda.init();</script>
    

    2、使用

    add this to your page

    <script src="node_modules/eruda/eruda.min.js"></script>
    <script>eruda.init();</script> 
    

    3、example

    <!DOCTYPE html>
    <html>
    <head>
        <meta charset="utf-8">
        <script type="text/javascript" src="//cdn.jsdelivr.net/npm/eruda"></script>
        <script>eruda.init();</script>
    </head>
    <body >
        <h1>one</h1>
    </body>
    
    <script>
    
        window.onload=function(){
            myAlert();
        }
        function myAlert() {
            console.log('dededededededededed');
    
        }
    
    </script>
    </html>
    
    135FFFC0-4388-4B84-B8E5-61230EF83DF0.png

    5.另一种也可以vconsole

    相关文章

      网友评论

          本文标题:web移动端调试工具-Eruda

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