1. 程式人生 > >js 文字框禁止貼上複製功能

js 文字框禁止貼上複製功能

禁止貼上

密碼<input  type="text" />


重新輸入密碼<input  type="text" 


onpaste="alert('為保證你的手機號碼正確輸入,請勿貼上');return false"/>

禁止貼上、右鍵、複製、剪下

<input type="text" id="username" name="username" value="zzsky" 

onpaste="return false" oncontextmenu="return false" 

oncopy="return false" oncut="return false">