<img src="22.jpg" id="imgMain" class="imgMain" onmouseover="this.style.cursor='hand'"></div>

解决方案 »

  1.   

    比如当需要控制鼠标指向某个id为"id1"的控件时,如下设置
    document.all.id1.style.cursor = "hand";
    当然何种样式根据你的需要,样式可以参考:
    http://msdn.microsoft.com/workshop/author/dhtml/reference/properties/cursor.asp
      

  2.   

    onmousemove="this.style.cursor='hand';"
      

  3.   

    参数: 
    crosshair default hand pointer 
    move help wait text 
    w-resize s-resize n-resize e-resize 
    ne-resize sw-resize se-resize nw-resize 
    auto url(img/1001.gif) 示例: 
    p { cursor: text; } 
    a { cursor: pointer; }
    body { cursor: url("mycursor.gif"), url("images/cursors/footcursor.jpg"), default; }