这是我用来显示工具提示的 jquery:
$(document).ready(function() {
$(".toolTip").hover(
function() {
var div_id = $(this).attr('id').split("_")[0];
if($("#"+div_id).length){
//
}
$(this).append(
'<div class="toolTipWrapper">'
+$("#"+div_id).text()
+'</div>'
);
this.width = $(this).width();
//Get the HTML document width and height
var documentWidth = $(document).width();
var documentHeight = $(document).height();
var toolTipWidth = $('.toolTipWrapper').width();
alert(documentWidth+" "+toolTipWidth+" "+$(this).offset().left);
if ($(this).offset().left + toolTipWidth > documentWidth) {
alert("COMING");
}
//ends
$(this).find('.toolTipWrapper').css({left:this.width+16})
$('.toolTipWrapper').fadeIn(300);
},
function() {
$('.toolTipWrapper').fadeOut(100);
}
);
});
在 HTML 中我有:
.toolTip {
padding-right: 20px;
background: url(../images/help.png) no-repeat right;
color: #3366FF;
position: relative;
}
.toolTipWrapper {
width: 350px;
position: absolute;
top: 10px;
display: none;
color: #4D4D4D;
font-size: 12px;
background-color: #EFF0F0;
border-color: #C9C9C9;
border-width: 1px;
border-style: solid;
padding: 6px 15px;
}
现在工具提示应该移动它的位置,所以如果窗口更小,它仍然是完全可见的。我需要将 tooptip 的位置移动到悬停对象的顶部/左侧。但是当我检查时 $(this).offset().left + toolTipWidth > documentWidth
,我没有看到条件变为真,因为我将这些值视为:
documentWidth 784 toolTipWidth 350 $(this).offset().left 383
这里有什么问题?