是否有任何用于 firebug 的插件,可让您使用该方法检查存储在元素上的数据data()
?
谢谢
自己找到了答案:http: //firequery.binaryage.com/
.data()
将数据存储在内部缓存中,因此没有简单的方法可以知道每个元素附加了什么。html5 数据属性(如果设置)用于初始值.data()
如果您不想安装插件,可以使用常规的 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.