使用原型 - 如何查看回车的输入字段?

时间:2012-06-12 20:27:35

标签: javascript prototypejs

我正在使用JS库Prototype--如何查看文本输入字段?按下返回时,向用户提醒字段内容? (页面上没有< form>,只有输入字段。)

以下是我想要做的事情:

Enter something: <input type='text' id='myfield'>

<script>
  if([keydown event in #myfield]) {
     alert("You typed: "+[contents of #myfield]);
  }
</script>

感谢。

3 个答案:

答案 0 :(得分:1)

$('myfield').observe('keypress', function(event){
    if(event.keyCode == Event.KEY_RETURN)
        alert($('myfield').value);
});​

您可以在此jsfiddle

中找到一个简单的演示

答案 1 :(得分:0)

查看http://prototypejs.org/api/event

如果举个例子,你可能会得到更好的答案。

答案 2 :(得分:0)

为什么不监控submit

对于元素<input id="signinForm"/>

Event.observe('signinForm', 'submit', checkForm);
function checkForm() { //do something }`

更多信息可在此处的文档中找到:

http://prototypejs.org/api/event/observe