我之前的问题:
sweetamylase 发布了她的小提琴http://jsfiddle.net/amyamy86/jSyfy/,这很棒并且非常接近我想要实现的目标,但是我无法获得它,因此按下回车将触发与单击按钮相同的操作.
我尝试了这个和其他变体
$("input").keypress(function(event) {
if (event.which == 13) {
event.preventDefault();
FoodDispaly();
}
});
但还没有让它工作