ReactJS: how to trigger form submit event from another event

后端 未结 2 739
难免孤独
难免孤独 2020-12-31 17:05

I\'ve two react events:

  1. Form submit event

    sendMessage: function(event){
        console.log(event);
        event.preventDefault();
    },
             
    
    
            
2条回答
  •  刺人心
    刺人心 (楼主)
    2020-12-31 17:45

    I learned something new today: this is just how the DOM works.

    From the MDN site:

    The form's onsubmit event handler (for example, onsubmit="return false;") will not be triggered when invoking this method from Gecko-based applications. In general, it is not guaranteed to be invoked by HTML user agents.

    According to the HTML spec:

    The submit() method, when invoked, must submit the form element from the form element itself, with the submitted from submit() method flag set.

    followed by (section 4.10.22.3)

    If the submitted from submit() method flag is not set, then fire a simple event that bubbles and is cancelable named submit, at form.

    So, the event is not fired if the submit() method flag is set.


    I was able to get the behavior you (and I) were expecting via the following code (JSFiddle example):