Stop form submit with native javascript

后端 未结 3 695
粉色の甜心
粉色の甜心 2020-12-21 21:25

I need to select a form via native javascript (not jQuery) and prevent the form submission (preventDefault).

The trick is that the form does not have a name or id, a

3条回答
  •  眼角桃花
    2020-12-21 22:06

    Using querySelector and an event listener, it's almost like jQuery

    document.querySelector('#search form').addEventListener('submit', function(e) {
        e.preventDefault();
    });
    

    note that the script has to come after the elements, or use a DOM ready handler, so the elements are available.

    FIDDLE

提交回复
热议问题