Question

As the title suggests.

I want to trigger an event by clicking the element.

In JSX, onClick works well, but somehow it just dead in raw JavaScript.

React.DOM.button({ type: 'button' }, { onClick: this.handleClick }, 'js button')

What may be the issue?

see demo

Était-ce utile?

La solution

All your key-value pairs should be in one object, as the first argument. The rest of the arguments are for children.

React.DOM.button({ type: 'button', onClick: this.handleClick }, 'js button');
Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top