disable enter key on specific textboxes

前端 未结 9 771
北荒
北荒 2020-12-30 18:25

I was looking for a way to do this, got a few scripts, but none of them is working for me.

When I hit enter in my textboxes, it shouldn\'t do anything.

I hav

9条回答
  •  囚心锁ツ
    2020-12-30 19:10

    This works for me.

    $('textarea').keypress(function(event) {
        if (event.keyCode == 13) {
            event.preventDefault();
        }
    });
    

    jsFiddle.

    Your second piece looks like it is designed to capture people pasting in multiple lines. In that case, you should bind it to keyup paste.

提交回复
热议问题