小弟刚学,望高手指教

解决方案 »

  1.   

    自己模拟吧.获得按键值.一个input用来显示特殊符号 一个<input type="hidden" name="ss">把真正的值赋给它.在下页面再request.form("ss")
      

  2.   

    <input type="password" face="Webdings">
      

  3.   

    在页面加入一个两个input 
    一个显示为text 一个为hidden
    在text中获取keyup用函数处理 将真正的值赋给hidden的input text中的则随便用什么显示 这个替换函数就不要我写出来了吧
      

  4.   

    无聊 给你写了个
    <script language="javascript">
    function getValue()
    {
      var ckValue=document.form1.showValue.value;
      var gtValue=document.form1.relValue.value+=String.fromCharCode(window.event.keyCode);
      window.event.returnValue = false;
      document.form1.showValue.value+="&";
    }
    </script>
    </head><body>
    <form id="form1" name="form1" method="post" action="">
      <label>
      <input type="text" name="showValue" onkeypress="getValue()"/>
      <input type="text" name="relValue">
      </label>
      密码
    </form>