控制body吧document.body.style.cursor = bDrag ? "hand" : "default";

解决方案 »

  1.   

    <input onMouseDown="this.style.cursor='hand'" onMouseUp="this.style.cursor='auto'">
      

  2.   

    <input style="cursor:hand">
      

  3.   

    另外一个<input>里什么事件也不用写
      

  4.   

    只有在input里面进行drag时才会出现图标的变换
      

  5.   

    我试着在input里面用onmousedown时间里面做
    onmousedown="style.cursor='hand';document.body.style.cursor='hand''
    但是,做完后,在input里面发生过mousedown时间后,IE的cursor就变成了
    hand
      

  6.   

    另外,如果用户并没有在input里面mouseup,而是在移出input后松开鼠标,那么整个IE的cursor就没有办法改回来。