我在一个页面中有很多输入,我只想显示一个,直到你按下回车键。当你按下回车键时,当前输入消失,隐藏的输入出现。
<input type="text" value="Name" />
<input type="text" value="Password" />
这是jQuery代码:
$('input').each(function(){
$(this).fadeIn();
$(this).on('keyup', function(e) {
if (e.which == 13)
return true;
else return false;
});
$(this).fadeOut();
});
我制作了这段脚本,但它不起作用。它同时向我显示两个输入,然后消失。
我应该改变什么以获得预期的结果?