React - Preventing Form Submission

前端 未结 11 894
一个人的身影
一个人的身影 2020-11-27 06:35

I\'ve been experimenting with React. In my experiement, I\'m using the Reactstrap framework.When I click a button, I\'ve noticed that the HTML form submits. Is there a way t

11条回答
  •  长情又很酷
    2020-11-27 07:29

    componentDidUpdate(){               
        $(".wpcf7-submit").click( function(event) {
            event.preventDefault();
        })
    }
    

    You can use componentDidUpdate and event.preventDefault() to disable form submission.As react does not support return false.

提交回复
热议问题