[Tools] Using mobile device for debugging your mobile web site

1. First you have enable "Developer mode" on your mobile device. (Different device might be different)

"Settings" -> Click "Build Number" 7 times.

2. Enable "USB debugging"

"Settings" -> "Developer option" --> enable "USB debugging"

3. Connect your device with your laptop

4. Open Chrome on your laptop, and visit:

chrome://inspect

5. Now you are able to open emulator on your laptop, the actions was sync between laptop and device.

You can inspect any components by using dev tool as usuall.

For IOS, please check:

https://github.com/google/ios-webkit-debug-proxy

原文地址:https://www.cnblogs.com/Answer1215/p/8449633.html

时间: 2024-10-16 17:13:29

[Tools] Using mobile device for debugging your mobile web site的相关文章

iphone手机连接USB时出现需要Mobile device setup disk上的usbaapl.sys文件

问题: iphone5 手机连接USB出现如下弹框 解决方法: 定位到C:\Program Files\Common Files\Apple\Mobile Device Support\Drivers\usbaapl.sys, 完后安装usbaapl.sys就可以解决问题了. iphone手机连接USB时出现需要Mobile device setup disk上的usbaapl.sys文件,布布扣,bubuko.com

Apache2: How To Redirect Users To Mobile Or Normal Web Site Based On Device Using mod_rewrite

http://www.howtoforge.com/apache2-how-to-redirect-users-to-mobile-or-normal-web-site-based-on-device-using-mod_rewrite Apache2: How To Redirect Users To Mobile Or Normal Web Site Based On Device Using mod_rewrite Since the massive rise of smartphones

移动设备上的媒体查询 CSS media queries for mobile device

现在试图解决android平板的屏幕分辨率问题,目前主要想到的办法是采用响应式设计和媒体查询,发现无论使用那种方式,工作量都很大,调试都困难,悲催啊. CSS的媒体查询虽然在传统的互联网页面可能发挥的余地不是很大,但是自从苹果和安卓的风靡之后,移动平台上的web开发变得越来越流行了,同时CSS的媒体查询可谓派上了大用场了. 以下为翻译内容,原文来自这里 非常棒的一篇文章 关于CSS media queries想了解更多,参看这里 如何使用Media Queries媒体查询: 媒体查询就像是一个C

apple mobile device recovery mode 问题解决

升级自己的苹果4手机,发现提示“apple mobile device recovery mode”错误,原因为苹果的驱动安装问题,参考 http://www.doc88.com/p-9065926472847.html 和 http://ibbs.91.com/thread-277290-1-1.html 解决,可以简答描述为: 1.Apple mobile device,使用 选择“从列表或指定位置安装(高级)”,然后点按“下一步”. 选择“不要搜索.我要自己选择要安装的驱动程序”.然后点按

nodejs + jquery Mobile构建一个简单的移动web (客户端)

前面展示了使用nodejs技术和jqm来搭建一个简单的支持CRUD操作应用的服务端部分(参见:nodejs + jquery Mobile构建一个简单的移动web(服务端) ),服务端采用nodejs技术实现,使用了mongodb数据库和轻量级web开发框架expressJS, 路由使用restful风格,所以你也可以使用restify来开发. 客户端的实现主要通过ajax调用实现.使用jade模板引擎. 客户端主要包含两个文件:layout.jade和index.jade 1. layout.

[WinCE] [Win10] Win10 Creator 升级后 Windows Mobile Device Center 不能打开

运行 services.msc 找到 Windows Mobile 2003-based device connectivity服务,右键属性,Log On选项卡选择 Local System account,并启动该服务. Ref: https://answers.microsoft.com/en-us/windows/forum/windows_10-update/after-windows-10-creators-update-can-not-connect/9807ebe3-0e53-4

本地计算机上的Apple Mobile Device服务启动后停止。某些服务在未由其他服务或程序使用时将自动停止

解决办法:1.开始——运行——regedit.exe,打开注册表编辑器,删除以下两个键: HKEY_LOCAL_MACHINE\System\CurrentControlSet\Services\Winsock HKEY_LOCAL_MACHINE\System\CurrentControlSet\Services\Winsock22.找到 C:\Windows\inf\nettcpip.inf文件 该文件为 tcp/ip协议文件,记着这个位置,一会儿有用:3.控制面板->网络和Internet

Windows 下 Apple Mobile Device Support 安装失败分析和解决方案

见不少网友遇到这个问题 正好这个程序是个msi,于是开日志,记录安装错误并分析,最后得以解决 [注意以下内容针对64位操作系统,32位不清楚--] =========================================================== 解决过程: 打开日志记录(方法二选一) 1. 注册表:HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\Installer 新建字符串值,Logging,值voicewar

linux device drivers - debugging之proc

在书籍"linux device drivers"的第四章,专门介绍驱动开发中的debugging技术. printk只是其中一种技术,这种技术要求printk打印消息,并且会写入到磁盘里的文件中,这会拖慢整个代码的执行速度. 还有其中的debugging技术,并且对代码执行速度的影响比prink小. 其中讲到了,我们可以让驱动程序在proc文件系统里面创建文件,并且将需要的debugging信息写入到这个文件里面. linux内核提供了相应的API,来和proc文件系统交互,例如创建