我需要一种方法来在jQuery.cache对象上找到存储数据的元素。
正如您现在可能的那样,jQuery按以下语法存储数据:
$('#idOfTheSelector').data('dataKey','dataValue);
jQuery将此数据存储在$.cache
对象中;
$.cache[1].data.dataKey = 'dataValue';
我的问题是:
答案 0 :(得分:0)
为什么不使用$('#idOfTheSelector').data('dataKey')
?无论你存储在它里面,它都会归还给你。