4
Impostare onSubmit in React.js
All'invio di un modulo, sto cercando di doSomething()sostituire il comportamento predefinito del post. Apparentemente in React, onSubmit è un evento supportato per i moduli. Tuttavia, quando provo il seguente codice: var OnSubmitTest = React.createClass({ render: function() { doSomething = function(){ alert('it works!'); } return <form onSubmit={doSomething}> <button>Click me</button> </form>; } …