Rumah > Artikel > pembangunan bahagian belakang > 原来是按enter可能提交按钮提交信息的,按刷新键也会自动提交
原来是按enter或者提交按钮提交信息的,按刷新键也会自动提交
<!--Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--><script language="javascript">//判断用户是否按回车键且转出的内容是否为空function inputKeyPress(){ if((event.keyCode==13)&&(document.all.chatWord.value!=null)&&(document.all.chatWord.value.length>0)) { document.forms[0].submit(); document.all.chatWord.value=''; document.all.chatWord.focus(); } }</script>