我已经使用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
有人可以帮助我获取自己的工具提示内容吗? (不显示默认工具提示)非常感谢
答案 0 :(得分:0)
$('#imagerow img').hover(
function () {
$(this).attr('data-tooltipText', $(this).attr('title'));
$(this).removeAttr('title');
},
function () {
$(this).attr('title', $(this).attr('data-tooltipText'));
});