我在我的网站上使用BeautyTips plugin工具提示。
我正在缓存进入工具提示的所有ajax内容。我想要做的是在点击操作后删除单个元素的缓存。
所以:
$("#SomeId").click(function(){
/// now clear a tooltip cache but of only single tooltipped element. how to do it?
});
答案 0 :(得分:1)
我不是BeautyTips的狂热用户,但我从source code可以看到,内容缓存是按body
元素中的btCache-urlwithoutdots
元素存储在每个网址中的格式如下:$(document.body).removeData("btCache-wwwexamplecom/foo/bar");
因此,使用以下代码行可以删除缓存的内容:
{{1}}
请注意,我无法测试它,所以我不能保证它会起作用。