JS onkeydown onenter

html中 onenter不是一个标准的事件。

js 中仿onenter事件,并仿登陆。代码兼容ie firefox
function pwdkeydown(e){
			var currKey=0,e=e||event; 
			currKey=e.keyCode||e.which||e.charCode;
			if(13 == currKey){
				var loginBtn = document.getElementById("loginBtn1");
				loginBtn.click();
			}
		}

html
<input class="text" type="password" name="password" id="password" onkeydown="pwdkeydown()"  />
<button type="button" name="loginBtn1" id="loginBtn1" class="button" />

你可能感兴趣的:(JavaScript)