1、密码输入框,确认密码输入框不能复制粘贴
<input name="pwd" type="password" id="pwd" οnpaste="return false" οncοntextmenu="return false" οncοpy="return false" oncut="return false"/>
onpaste:粘贴时触发的事件oncontextmenu:右键弹出属性菜单
oncopy:实现拷贝,复制
oncut:剪切
2、点击事件阻止
οnclick="func()" 表示只会执行 func , 但是不会传回 func 中之回传值
onclick = "return func()" 则是 执行 func 并传回 func 中之回传值
范例:
<script>
function doAlert() {
//alert("#");
var fail_this_check = true;
if(fail_this_check)
return false;
else
return true;
}
</script>
with return <input type="checkbox" οnclick="return doAlert()" /><br/>
without return <input type="checkbox" οnclick="doAlert()" />
使用 return doAlert() 的 checkbox 会因为 func 回传 false 而中断 click 动作