是否有任何firebug插件可让您使用data()
方法检查存储在元素上的数据?
由于
答案 0 :(得分:2)
答案 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.