码迷,mamicode.com
首页 > Web开发 > 详细

使用weinre远程调试网页

时间:2015-02-11 20:43:25      阅读:236      评论:0      收藏:0      [点我收藏+]

标签:

1 下载nodejs并解压至 nodejsproject/

        http://nodejs.org/download/           


2 安装weinre
    ./nodejsprojectbin/bin/npm install weinre       #使用nodejs提供的npm 否则会出错

3 启动weinre
    ./nodejsproject/node_modules/weinre [someoption]
        options:
        --httpPort     port to run the http server on        default: 8080
        --boundHost    ip address to bind the server to      default: localhost //建议修改为 -all- 监听所有ip
        --verbose      print more diagnostics                default: false
        --debug        print even more diagnostics           default: false
        --readTimeout  seconds to wait for a client message  default: 5
        --deathTimeout seconds to wait to kill client        default: 3*readTimeout
    (手机和服务器必须在同一网段,可以相互访问)

4 调试
    1 手机:访问 weinre 服务器, http://xx.xx.xx.xx:8080
    2 手机:在页面上找到 Target Bookmarklet, 复制下面的js代码,类似下面的格式 地址后面的anonymous可以修改以方便区分不同手机
            //javascript:(function(e){e.setAttribute("src","http://xx.xx.xx.xx:8080/target/target-script-min.js#anonymous");document.getElementsByTagName("body")[0].appendChild(e);})(document.createElement("script"));void(0);
        可以将js代码保存到书签
    3 手机:打开新的标签页,访问要调试的网页 www.aaa.com/1.html
    4 手机:在www.aaa.com/1.html所在的标签页点击我们保存的书签,可以将我们的代码注入到当前页面,
      或者 直接粘贴js代码到地址栏,回车 注入代码
    5 pc端:访问(wenkit内核的浏览器) http://xx.xx.xx.xx:8080
        在access point下访问 http://xx.xx.xx.xx:8080/client/#anonymous
    6 pc端:在targets 和clients中分别选择要调试的目标网页和目标设备,然后点击上方的项目选择调试的项目,操作类似firebug
    
      




使用weinre远程调试网页

标签:

原文地址:http://my.oschina.net/cuilili/blog/377809

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!