2

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

谢谢

4

3 回答 3

2

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

于 2012-04-16T11:31:43.113 回答
0

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

于 2012-04-16T11:18:13.143 回答
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.
于 2015-04-26T15:29:27.907 回答