我正在尝试在React js中创建一个带有单击事件的按钮。我不能使用JSX,因为它在Rails中不可用。在创建元素时,它会触发错误"无效的组件元素。"
var csearch_btn = React.createClass({
handleClick: function(index) {
console.log('content_input clicked');
}
,
render: function() {
return '<button class="btn btn-pill bg-color-blue-4" onClick=
{this.handleClick()}>Search</button>';
}
});
ReactDOM.render(csearch_btn ,
document.getElementById('content_Search_Btn'));