查看Javascript修改后的页面HTML
div内容替换成ajax后,有什么方法可以在Firebug或者其他软件中看到页面吗?
Is there any way to see the page in Firebug or other software after the content of a div has been replaced with ajax?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
是的,这正是 Firebug 将向您显示的内容:DOM 的当前状态。与 Chrome 的开发者工具相同。
Yes, that's exactly what Firebug will show you: the current state of the DOM. Same with Chrome's developer tools.
当然,您可以使用 FireBug 检查 DOM,FireBug 始终显示 DOM 的最新状态(当然还有帐户)对于 AJAX 更新):
Sure, you can inspect the DOM with FireBug which always shows the DOM at its most recent state (and of course accounts for AJAX updates):
是的
firebug将改变的div标记为黄色,在html视图中可以看到html动态更新
yes
firebug marks the changed div in yellow and you can see the html dynamic updates in the html view