是否可以在移动网络浏览器中启用 WebKit JavaScript Inspector?
我很想在移动浏览器上使用 webkit 附带的 Web Inspector 开发工具。有谁知道是否可以在 Android 网络浏览器上启用网络检查器?
I would love to use the Web Inspector development tools that come with webkit on a mobile browser. Does anyone know if it is possible to enable web inspector on say the Android web browser ??
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(6)
实际上它不仅仅是 Safari 的一部分,因为 google chrome 也有它。 Web 检查器是 Safari、Google Chrome 以及 Android 设备中默认浏览器使用的 WebKit 引擎的一部分。但是,Web 检查器目前在移动设备上任何基于 webkit 的浏览器上均不可用。
Actually it's not just a part of safari since google chrome has it too. The web inspector is a part of the webkit engine used by safari, google chrome and if i'm not wrong by the default browser in android devices. But, the web inspector is currently unavailable on any webkit based browser on mobile device.
令人惊讶的是,黑莓是第一个向移动开发者提供此功能的公司。 http://www.berryreview.com/2011/04/15/hot-webkit-web-inspector-on-the-blackberry-playbook-for-web-developers/ 希望这个概念(尤其是远程检查器)很快就会登陆 Android。
Surprisingly, Blackberry is the first to give this to mobile developers. http://www.berryreview.com/2011/04/15/hot-webkit-web-inspector-on-the-blackberry-playbook-for-web-developers/ Hopefully this concept (especially the remote inspector) will make its way to Android soon.
事实证明,远程 Web 检查器也可以通过 iOS5 上的私有 API 来使用:
http:// atnan.com/blog/2011/11/17/enabling-remote-debugging-via-private-apis-in-mobile-safari/
并在此工具中使用:
http://www.iwebinspector.com/
可能值得搜索刚刚发布的 ICS 源代码,看看是否有原生 Android 浏览器中有一个类似的未发布的 API。
此外,您可能对远程调试器形式的“轻型”解决方案感兴趣:
Weinre
尽管它使用 JS,而不是像 Web 检查器那样内置在浏览器中。
Turns out that the remote web inspector is also available via a Private API on iOS5:
http://atnan.com/blog/2011/11/17/enabling-remote-debugging-via-private-apis-in-mobile-safari/
and is used in this tool:
http://www.iwebinspector.com/
Might be worth trawling the just release ICS sourcecode to see if there is a similar un-published API in the stock android browser.
Also you might be interested in a "light" solution, in the form of this remote debugger:
Weinre
though its using JS rather than being built into the browser the way web inspector is.
现在 Android 上也可以实现此功能:https://developers.google.com/chrome/mobile /文档/调试
This is now possible on Android too: https://developers.google.com/chrome/mobile/docs/debugging
通过在 Chrome 中的 URL 之前添加 view-source: ,仍然可以通过语法突出显示查看任何页面的源代码(仅 HTML,不含 CSS 或 JavaScript)。
Its still possible to see the source of any page with syntax highlighting (HTML only without CSS or JavaScript) by adding view-source: before the URL in chrome.
Web Inspector 是 Safari 浏览器的集成部分,因此它不适用于其他浏览器,例如 Opera Mini、Android 浏览器或其他浏览器。
Web Inspector is an integrated part of the Safari browser, thereby it is not going to be available for other browsers, like Opera Mini, Android browser or what ever.