我想要做的是,如果用户在输入上输入文本后按键盘上的Enter键,则会转到链接。
如何才能最好地为前端演示做到这一点?
这是html:
<form>
<input class="login_btn" type="text" value="Password" onfocus="this.type='password';this.value=''" onblur="if(this.value == ''){this.type='text';this.value='Password';}"></input>
</form>
答案 0 :(得分:0)
试试这个
$(".login_btn").keyup(function(e) {
if (e.which == 13 && this.value.length > 0) { //check for empty input as well
//Enter was pressed, now do what you need to do.
}
});
顺便说一句:确定输入是否已被按下之前已被多次询问过。请考虑搜索:)。