1
使用以下JavaScript函數,我設法顯示一個帶有懸停箭頭的靜態工具提示。工具提示未正確顯示
$('.tooltip-basic').hover(function() {
var title = $(this).attr('title');
$(this).data('title', title).removeAttr('title');
$('<p class="tooltip-basic-message"></p>').text(title).appendTo(this).fadeIn('slow');
}, function() {
$(this).attr('title', $(this).data('title'));
$('.tooltip-basic-message').remove();
});
不過,我奮力定位箭頭的提示下,其DIV上面的提示,無論有什麼樣的高度位置。
這裏是一個小提琴:http://jsfiddle.net/xA8LS/3/
我試圖使用JavaScript來始終定位提示其觸發因素的頂部 – Leo
@Leo這正是它在上面的例子中所做的......或者你想讓它跟隨光標嗎? –