React 当前组件与当前函数交互

前端之家收集整理的这篇文章主要介绍了React 当前组件与当前函数交互前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
	var InlineButton = React.createClass({ 
		onClick : function () {	
			var $form = $("form.new_user_form");
			var $buttons = $(".toggle-inputs button");
			var mode = $(this.refs.inline).data("input");
			$buttons.removeClass("active");
			$(this.refs.inline).addClass("active");
			if (mode === "inline") {
				$form.addClass("inline-input");
			} else {
				$form.removeClass("inline-input");
			}
		},getDefaultProps : function () {
		return {
		  className : 'glow left active',dataInput:"inline"
		};
		},render: function() {  
		 return (
			 <button onClick={this.onClick}  ref="inline" className={this.props.className} data-input={this.props.dataInput}>{this.props.value} </button>
		 );  
		}  
	 });


通过 ref 可获取当前的 render Object Element

原文链接:https://www.f2er.com/react/307517.html

猜你在找的React相关文章