how prevent submit on press enter in twitter bootstrap typeahead plugin

前端 未结 5 2166
谎友^
谎友^ 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条回答
  •  梦毁少年i
    2021-02-07 13:20

    The best way I've found to approach this is not to use a submit input. Use a button input instead and add some js to submit the form when it's clicked.

    $('#my_submit_button').click(function(){
        $(this).parents('form').submit();
    });
    

提交回复
热议问题