【发布时间】:2011-12-23 22:49:52
【问题描述】:
我的朋友们在他的网站上出现编码错误,请我帮忙。但是我也被困住了。您会看到当您将鼠标悬停在链接上时会弹出一个工具提示,但他希望它在链接的末尾,而不是在中间。 (顺便说一句,他正在使用 phpbb 论坛)
$(document).ready(function() {
$("a.topictitle").hover(function() {
$(this).next(".topic_desc_pos").stop()
.animate({left: "100", opacity:1}, "fast")
.css("display","block")
}, function() {
$(this).next(".topic_desc_pos").stop()
.animate({left: "150", opacity: 0}, "fast", function(){
$(this).hide();
})
});
});
如果有帮助,请访问他的论坛 - http://www.codexvideos.com/viewforum.php?f=47
【问题讨论】:
标签: jquery hyperlink hover tooltip forum