我在页面上有以下 div:
<div id="tip">
Tip text here...
</div>
以及以下一个:
<div class="element">
Element text here...
</div>
还遵循js代码:
$(document).ready(function() {
$('.element').hover(function() {
$('#tip').css('top', $('.element').position().top);
$('#tip').css('left', $('.element').position().left);
$('#tip').fadeIn();
}, function() {
$('#tip').fadeOut();
});
});
它在页面的左上角显示提示。如何修复此代码以在与元素相同的位置显示提示?(我不能将提示和元素放在代码上彼此靠近。)
非常感谢您的帮助!