<input type=button onclick="this.style.cursor='hand'">

解决方案 »

  1.   

    在onclick事件中改变鼠标样式。即可
    <script>
    aa(i)
    {
    i.style.cursor="hand"
    }
    </scriot><button onclike="aa()">test</button>
    一试就知
      

  2.   

    sorry,应该是<button onclike="aa(this)">test</button>或者直接写成:<button onclike="this.style.cursor='wait'">test</button>
    和seabell一样。
      

  3.   

    上面说的都没错,我补充各种鼠标的形状:
    各种样式的光标
    auto          :标准光标
    default       :标准箭头
    hand          :手形光标
    wait          :等待光标
    text          :I形光标
    vertical-text :水平I形光标
    no-drop       :不可拖动光标
    not-allowed   :无效光标
    help          :?帮助光标
    all-scroll    :三角方向标
    move          :移动标
    crosshair     :十字标只需把上面的this.style.cursor='wait'引号部分改为上面的左边文字部分。
      

  4.   

    <input type=button onclick="this.style.cursor='url(img/1001.gif)'">