网站前台常见技巧

来源:互联网 发布:清华大学网络教育难吗 编辑:程序博客网 时间:2024/05/16 11:08

1、禁止浏览器自动填写表单

      关闭表单自动提交:  <form autocomplete="off"/>
      关闭txext自动提交:  <input type="text" autocomplete="off"/> 
      关闭密码自动提交:  <input type="password" autocomplete="off"/>
      注:之前一般都是ie支持此属性,html5开始支持此属性,详见HTML 5autocomplete 属性

 

2、input中只能输入数字

     <input  type="text" onkeyup="javascript:this.value=this.value.replace(/\D/g,'');" maxlength="3" />