0

为什么这段代码不适用于firefox和ie?我正在使用 ie 10 和 firefox 25,使用 chrome 可以正常工作。Firefox 显示 div 但不在正确的位置(鼠标坐标)。

的JavaScript:

<script>
    function show(id) {
      document.getElementById(id).style.display = "block";
      var topPixel = event.clientY; 
      var leftPixel = event.clientX; 
      document.getElementById(id).style.top = topPixel + "px"; 
      document.getElementById(id).style.left = leftPixel + "px";
    };
    function hide(id) {
      document.getElementById(id).style.display = "none";
    };
</script>

的CSS:

<style>
.show {display: none;position:absolute;}
</style>

带有 php 的 html($data 被正确读取):

<img src="picture.jpg" width="100" height="100" border="0" alt="img" usemap="#img">
<map name="img">
<?php while ($data = mysql_fetch_array($db_erg, MYSQL_ASSOC)) { ?>      
    <area shape="rect" coords="10,10,30,30" href="" alt="#" title="" onmouseover="show('<?php echo $data['id'];?>');" onmouseout="hide('<?php echo $data['id'];?>');" />
    <div class="show" id="<?php echo $data['id'];?>">
        <?php echo $data['text'];?>
    </div>
<?php } ?>
</map>

功能:当鼠标在一个区域上时,应该打开一个具有相应内容和鼠标坐标的div。

4

1 回答 1

0

http://jsfiddle.net/tX25a/2/

div=document.getElementsByTagName('div')[0];
btShow=document.getElementsByTagName('button')[0];
btHide=document.getElementsByTagName('button')[1];
btShow.onclick=function(){
    document.body.onmousemove=function(event){
        var e=event||window.event;
        div.style.left=e.clientX+"px";
        div.style.top=e.clientY+"px";
    }
    div.style.display="block";
}
btHide.onclick=function(){
    document.body.onmousemove=function(){};
    div.style.display="none";
}

在 FF17ESR、OS/2 上为我工作,也应该在 IE 和 WebKit 上工作。如果您希望块在鼠标退出时消失并在鼠标悬停时出现,而不是在按钮单击时出现,那么只需定义正确的事件处理程序。

于 2013-11-09T18:01:45.673 回答