3

我有鼠标悬停的图像列表,这些图像必须显示一些信息。问题是鼠标事件不会触发 info div。

#team_div{
  display:block;
  position:relative;
}

#pop_div{
  width:300px;
  padding:5px;
  height:200px;
  overflow:hidden;
  border:2px solid #ccc;
  background:#fefefe;
  position:absolute;
  display:none;
}

#pop_div img{ 
  margin:10px;
  display:block;
  float:left;
}

.

<div id="team_div" class="team_div_loading">
<div id="pop_div"></div>
<table>

  list of images

</table>
</div>

.

$('#team_div > table img').hover(function() {
  var top = this.parentNode.offsetTop; 
  var left = this.parentNode.offsetLeft; 
  var img =$(this).attr('src');
  var id =$(this).attr('id');
  var content = $("#" + id + "p").html();
  $("#pop_div").show();
  $("#pop_div").css('top', top-11 +'px');
  $("#pop_div").css('left', left-12 +'px');
  $("#pop_div").html('<img src="' + img + '"/>' + content );
  $("#pop_div").fadeIn(700);
});

$("#pop_div").mouseout(function(){
  $("this").hide();
});

在此 if 函数为悬停时的图像调用,没有任何鼠标事件触发 pop_div。

我很欣赏你的建议。

4

1 回答 1

0

首先,您不能在元素中使用,为此使用 div 或 ul li 结构,我通过在 a 中插入 img 标签来做到这一点

<div class="imageDiv"></div>

并编辑jquery函数

$('#team_div>.imageDiv img').hover(function () {
        var top = this.parentNode.offsetTop;
        var left = this.parentNode.offsetLeft;
        var img = $(this).attr('src');
        var id = $(this).attr('id');
        var content = $("#" + id + "p").html();
        $("#pop_div").show();
        $("#pop_div").css('top', top - 11 + 'px');
        $("#pop_div").css('left', left - 12 + 'px');
        $("#pop_div").html('<img src="' + img + '"/>' + content);
        $("#pop_div").fadeIn(700);
    });

您只是使用了错误的 jquery 选择器。我不知道您要对图像悬停功能做什么,但它正在处理上述更改。

于 2013-02-11T10:08:16.280 回答