<input type=button value="abc" onfocus="this.blur()">

解决方案 »

  1.   

    采用样式表实现,你可以在这个基础上再美化一下:
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=gb2312">
    <meta name="GENERATOR" content="Microsoft FrontPage 4.0">
    <meta name="ProgId" content="FrontPage.Editor.Document">
    <title>New Page 1</title>
    <style>
    <!--
    .input {  font-family: "宋体", "Arial", "Helvetica";font-size: 12.6px; color:#ffffff; background-color: #818194; border: 1px #333333 solid;border-left: 1px solid rgb(0,0,0); border-right: 1px solid rgb(0,0,0); border-top: 1px solid rgb(0,0,0); border-bottom: 1px solid rgb(0,0,0)}
    -->
    </style>
    </head><body><form method="POST">
      <p>
      <input type="text" name="T1" size="20">
      <input type="button" value="提交" name="B1" class="input">
      <input type="reset" value="全部重写" name="B2" class="input">
      </p>
    </form>
    </body>
    </html>
      

  2.   

    <Input Type=Button OnMouseUp="this.blur()">
      

  3.   

    如果是IE5.5,可以使用
    <input type=button value="abc" hidefocus=true>