核心提示:1.密码框type=password 禁止禁止复制、粘贴、剪切和右键功能。onpaste=return false oncontextmenu=return false oncopy=return f...
1.密码框type=password 禁止禁止复制、粘贴、剪切和右键功能。
onpaste="return false" oncontextmenu="return false" oncopy="return false" oncut="return false"
2.表单中password输入框的文字显示与隐藏实现 https://blog.csdn.net/cordova/article/details/50853415
3.input只能输入数字 使用type=tel 手机端有效 使用type=number pc端有效 代码(vue): <input type="tel" v-model="money" placeholder="请输入金额" class="moneyInput" @keyup="moneyKeyUp"> moneyKeyUp () { this.money=this.money.replace(/[^0-9]/g,'') }
另:onkeyup="this.value=this.value.replace(/[^0-9]/g,'')" onafterpaste="this.value=this.value.replace(/[^0-9]/g,'')"