使用 jquery 数据查看器扩展 google chrome 元素检查器
我使用 firebug 进行 javascript 调试。但在大型项目上,他开始结巴。在这方面,谷歌浏览器开发工具看起来更好 - 它更快。
Firebuge 有 fireQuery 来查看存储在 html 元素中的所有数据(通过使用 $.data())。
如何在chrome元素检查器中看到相同的信息?
我知道控制台中的解决方案:“$('selector').data()”。但并不方便。 我想查看所有带有存储数据的 html 元素(如“fireQuery”中)。 是否可以为此功能编写一个插件,或者是否有一些标准解决方案?
I use firebug for javascript debug. But on large projects, he begins to stutter. In this regard, google chrome dev tools looks better - it's faster.
Firebuge have fireQuery to view all data which is stored in html element (by using $.data()).
How to see the same information in chrome element inspector?
I know solutions in console: "$('selector').data()". But it is not convenient.
I want to see all html elements with stored data (like in "fireQuery").
s it possible to write a plugin for this functionality or is there some standard solutions?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
另请查看 jQuery 调试器。添加相同的行为以及绑定事件的概述。
Check out jQuery Debugger, too. Adds the same behavior as well as an overview of bound events.
我找到了解决方案(几乎是我需要的):Chrome 查询 (来源)
I found solution (almost what i need): Chrome Query (source)