Setting onSubmit in React.js

后端 未结 4 2043
[愿得一人]
[愿得一人] 2020-12-23 15:35

On submission of a form, I\'m trying to doSomething() instead of the default post behaviour.

Apparently in React, onSubmit is a supported event for for

4条回答
  •  情深已故
    2020-12-23 16:17

    You can pass the event as argument to the function and then prevent the default behaviour.

    var OnSubmitTest = React.createClass({
            render: function() {
            doSomething = function(event){
               event.preventDefault();
               alert('it works!');
            }
    
            return 
    ; } });

提交回复
热议问题