响应回车事件

输入框如下

<input name="password" type="text" id="showPwd" tabindex="2" class="input" value="密码"
								onkeypress="javascript:press(event);" />

 脚本:

function press(event) {
	if (event.keyCode == 13) {
		alert("您按下了回车键。");
	}
}

你可能感兴趣的:(js,jquery)