function submit1(e){ var isie = (document.all) ? true : false;//Determine whether it is IE kernel or Mozilla var key; if (isie) key = window.event.keyCode;//IE uses the windows.event event else { key = e.which;//There is one key function out of 3 The default hidden variable is passed here using e. e.which gives an index value to the Mo kernel (note 1) }
if(key==13) send1('loginemail','loginpsw');//triggered Events can be customized
}
For more details, please refer to the next article.
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