how prevent submit on press enter in twitter bootstrap typeahead plugin

前端 未结 5 2162
谎友^
谎友^ 2021-02-07 12:36

I have a input text and I apply it typeahead plugin for suggesting items, but when I press enter key on input text it submit form.

How can I prevent form submit using tw

5条回答
  •  [愿得一人]
    2021-02-07 13:35

    According to the documentation, you can set the option confirmKeys to something else than return (13) :

    $('input').tagsinput({
       confirmKeys: [188, 32, 39],
    });
    

    However, a smarter way to go about this is to prevent sending the form on enter.

提交回复
热议问题