Home  >  Article  >  Web Front-end  >  js sample code to disable carriage return submission form_javascript skills

js sample code to disable carriage return submission form_javascript skills

WBOY
WBOYOriginal
2016-05-16 17:07:45719browse

As shown below;

Copy code The code is as follows:

function ifenter(){
if(event.keyCode==13){
return false;
}else if(event.srcElement.type=="submit"){
form1.submit();
}
}
document.onkeydown=ifenter;
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn