//enter键盘事件

document.onkeypress=function(){

if(event.keyCode==13){

return false;

}

}

05-11 18:01