disable enter key on specific textboxes

前端 未结 9 833
北荒
北荒 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:16

    If you want to disable for all kind of search textbox. Give all them a class and use that class like 'search_box' following.

    //prevent submission of forms when pressing Enter key in a text input
    $(document).on('keypress', '.inner_search_box', function (e) {
        if (e.which == 13) e.preventDefault();
    });
    

    cheers! :)

提交回复
热议问题