我有使用 jQuery 1.7.1 的 jQuery 工具工具提示。但是,我不得不将我的 jQuery 更新到 1.8.1 以解决一个甜蜜的 IE8 和更低的问题。工具提示不再适用于 jQuery 1.8.1。有谁知道快速修复?谢谢。
更新 - 这是我用来调用插件的 JS。还使用实时查询。
$(function() {
$("th a[title], a.tipin[title]").livequery(function(){
$(this).tooltip({
offset: [-30, 0],
opacity: 0.9
}).dynamic({ bottom: { direction: 'down' } });
});
$("a.tip[title]").livequery(function(){
$(this).tooltip({
offset: [0, 30],
position: 'center right',
opacity: 0.9
}).dynamic({ bottom: { direction: 'down' } });
});});