为什么这段代码不适用于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。
答案 0 :(得分:0)
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。 如果您希望块在onmouseout上消失并显示在onmouseover上,而不是按钮的点击次数,那么只需定义正确的事件处理程序。