如何查看 jQuery Mobile 在后台加载的内容?
使用 jQuery Mobile,我看到了当单击链接并提供相关页面时它如何添加到现有 DOM。然后,准备好后,它会切换到新的 data-role="page"
。但是,当我在浏览器(Google Chrome 或 Mozilla Firefox)中执行“查看源代码”时,我看到的是交付时的原始页面,没有稍后加载的其他内容(DOM 注入)。我怎样才能看到浏览器真正有什么(渲染后 HTML)?如果它恰好是一个 JavaScript 解决方案,请不要以为我知道把它放在哪里以及如何触发它显示内容。
Using jQuery Mobile, I have seen how it adds to the existing DOM when links are clicked and a related page is served. Then, when ready, it switches to that new data-role="page"
. But when I do a "view source" in the browser (Google Chrome or Mozilla Firefox), I see the original page, as delivered, without the additional things loaded later (DOM injections). How can I see what the browser really has (post-render HTML)? If it happens to be a JavaScript solution, please don't presume I know where to put it and how to trigger it to show the content.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 Chrome 中:扳手 >工具>开发者工具将是查看“实时”DOM 的一种方式。
In Chrome: Wrench > Tools > Developer Tools would be a way to see the 'live' DOM.