obj.style.display = "none"; //"none" 隐藏    "" 显示

解决方案 »

  1.   

    obj.style.visibility = "hidden";
      

  2.   

    <IMG  onmouseover ='alert("X:"+this.style.left+"\nY:"+this.style.top)'   alt="" src="" style="LEFT: 45px; POSITION: absolute; TOP: 234px">
      

  3.   

    还有鼠标在我当前图片中的的位置呢(使用onmousemove)?怎么得到呢?如果图片ID叫pic00的话?就差一步了啊,在来两句。
      

  4.   

    把图片用absolute定位,然后用on mousemove+event对象获得鼠标绝对坐标,用图片坐标减去鼠标坐标就是鼠标在图片中的坐标。
      

  5.   

    哈,又一个讲原理的。
    我要的是实际啊,来两句指令吧!!!!!!
    绝对坐标是onmousemove.event.mouse.x 吗?还是....left ? 还是什么?