如何删除默认工具提示并保留我自己的工具提示的内容

时间:2014-11-17 20:21:19

标签: javascript jquery

我已经使用jQuery制作了一个工具提示,但默认浏览器仍然存在。我用这个脚本得到了它,但它也使我自己的工具提示的内容消失了,这是页面上一些图像的标题:

$('#imagerow img').hover(

function () {
 $(this).data('tooltipText', $(this).attr('title'));
    $(this).removeAttr('title');
},

function () {
    $(this).attr('title', $(this).data('title'));
    $(this).attr('title', $(this).data('tooltipText'));

});

点击#imagerow中较小的图片查看。这是指向正在进行的页面的链接:

http://www.beijerland.website/gallerij.html

有人可以帮助我获取自己的工具提示内容吗? (不显示默认工具提示)非常感谢

1 个答案:

答案 0 :(得分:0)

$('#imagerow img').hover(

function () {
 $(this).attr('data-tooltipText', $(this).attr('title'));
 $(this).removeAttr('title');
},

function () {
    $(this).attr('title', $(this).attr('data-tooltipText'));
});