禁用密码文本框的粘贴复制功能

<input name="loginpwd" 
       type="password" 
       style="-moz-user-select:none;"  
       onselectstart="return false;" 
       ondragenter="return false;" 
       onpaste="return false;"/>

<input name="loginpwdconfirm" 
       type="password" 
       style="-moz-user-select:none;"  
       onselectstart="return false;" 
       ondragenter="return false;" 
       onpaste="return false;"/>


一般对于密码文本框和需要重复确认的地方需要使用

你可能感兴趣的:(html)