document.oncontextmenu=new Function("event.returnValue=false;"); //禁止右键功能,单击右键将无任何反应
document.onselectstart=new Function("event.returnValue=false;"); //禁止先择,也就是无法复制*/
//禁用F5键代码
function document.onkeydown(){
if(window.event.keyCode==116){
window.event.keyCode = 0;
window.event.returnValue = false;
}
}
onKeyUp="this.value=this.value.replace(/[^\d\.]/g,'') " onafterpaste="this.value=this.value.replace(/[^\d\.]/g,'') "//只能输入数字和小数点
js禁用右键、禁止先择、禁用F5键、只能输入数字和小数点
– 2009年04月8日发表于: Javascript