<img src="xxx" style="cursor:hand;">

解决方案 »

  1.   

    如果我不在<img >中使用style,而在onMouseOver中调用一个函数,
    我该写什么代码?
    谢谢楼上的兄弟!!
      

  2.   

    <img src="xxx" onMouseOver=doMouseOver()>
    <script>
    function doMouseOver()
    {
      window.event.style.cursor = "hand";
    }
    </script>Out也一样
      

  3.   

    <img src="**" onmouseover="this.style.cursor = hand">try !
      

  4.   

    OH,sorry,<img src="**" onmouseover="this.style.cursor = 'hand'">少写了引号