您为什么不只使用onClick?
var ReactTable = React.createClass({ handleClick: function(e) { this.router.transitionTo('index'); }, render: function() { return( <div> <table> <thead> <tr> <th>Name</th> <th>Age</th> <th>Full Detail</th> </tr> </thead> <tbody> <tr onClick={this.handleClick.bind(this)}> <td>{user.name}</td> <td>{user.age}</td> <td>{details}</td> </tr> </tbody> </table> </div> ); }});


