<input type="button" onclick="return false">

解决方案 »

  1.   

    即跑开,是按钮跑开吧。既然是这样,
    楼主你可以换一种方式考虑这个问题啊,把按钮disabled不就行了吗?^_^
      

  2.   

    <script>
    function aa(){
    var x=event.x;var y=event.y;
    document.all.button1.style.left =x+20;
    document.all.button1.style.top =y+20;
    }
    </script>
    <body onmousemove=aa()>
    <input type=button id=button1 value="你就是点不中我,^_^"style="position:absolute;left:30;top:30;width:150;height:20;">
      

  3.   

    <input type=button id=button1 value="你就是点不中我,^_^" onmousemove="this.style.left=event.clientX*Math.random()+50;this.style.top=event.clientY*Math.random()+50" style="position:absolute;">
      

  4.   

    bencalie(Bencalie) 这样的化还是有机会可以点到的。
      

  5.   

    MOUSE点不到还能用TAB銉吧?好象没什么意思
      

  6.   

    <input type="button" onfocus="this.blur()" onclick="return false;">
      

  7.   

    移动button不好吧?当按钮获得焦点后,按enter键还是有click事件发生
      

  8.   

    那怎样让按钮点击一次以后就变成灰色,即DISABLED,在JAVASCRIPT中应该怎样用语句实现呢,我试了DOCUMENT.FORM1.BUTTON1.DISABLED=TRUE,好像这样写没用。应该怎样写呢?
      

  9.   

    <button onclick="this.disabled=true"></button>