使用data()方法检查存储在元素上的数据

时间:2012-04-16 11:07:39

标签: jquery firebug

是否有任何firebug插件可让您使用data()方法检查存储在元素上的数据?

由于

3 个答案:

答案 0 :(得分:2)

自己找到答案:http://firequery.binaryage.com/

答案 1 :(得分:0)

.data()将数据存储在内部缓存中,因此没有简单的方法可以知道附加到每个元素的内容。 html5数据属性(如果已设置)用于.data()

的初始值

答案 2 :(得分:0)

如果您不想安装插件,可以使用常规Firebug调试器。只需先将数据对象复制到局部变量中。

var myDataAll = $("#myElement").data();
// Stop at the next line in the debugger and examine myDataAll.

var myDataSpecific = $("#myElement").data("myKey");
// Stop at the next line in the debugger and examine myDataSpecific.