HTML
<div id="tooltipWindow" class="tooltipContainer">
<div></div>
</div>
CSSが
<style>
.tooltipContainer {
position: fixed;
height: auto;
width: auto;
background: ghostwhite;
padding: 10px;
}
</style>
を(あなたが望むように私はまた、ツールチップのdivに取り付けた要素のクラスが追加されている下のスクリプトでは、スタイルを追加します)
JAVASCRIPT(jQuery、dont fo jQueryライブラリを含むように目標確認、私はインクルードは同様にタグを含める追加されている)
<script src="https://code.jquery.com/ui/1.10.4/jquery-ui.min.js" type="text/javascript"></script>
<script>
//Following Tooltip
$('.elementClassName').mousemove(function(e) {
if ($(this).attr('title') != "") {
$('#tooltipWindow div').html($(this).attr('title'));
$('#tooltipWindow').css('left', e.clientX + 10).css('top', e.clientY + 10).addClass($(this).attr('class'));
$('#tooltipWindow').show();
}
});
$('.elementClassName').mouseleave(function (e) {
$('#tooltipWindow').hide();
});
}
//Non Following Tooltip
$('.elementClassName').hover(function(e) {
if ($(this).attr('title') != "") {
$('#tooltipWindow div').html($(this).attr('title'));
$('#tooltipWindow').css('left', e.clientX + 10).css('top', e.clientY + 10).addClass($(this).attr('class'));
$('#tooltipWindow').show();
}
},function (e) {
$('#tooltipWindow').hide();
});
}
</script>
可能な重複:http://stackoverflow.com/questions/1279254/jquery-tooltip-follow-mouse私は考えていない – Johan
そう...(私は少なくとも質問をしなかったが、どういうわけか私はそこに答えを見つけることができるかどうか分かる) – Jbcarey