本文介绍了使用react js获取选定的选项文本?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我的选择列表组件呈现了我的选择列表:
I have my select list component rendering my select list:
<form className="pure-form">
<select ref="selectMark" className="mark-selector"
onChange={this.onChange}>{this.getOptions()}
</select>
</form>
我在组件上有一个创建选项的方法:
I have a method on the component to create the options:
getOptions: function () {
return this.props.renderProps.data.map(function (item) {
return <option key={item.value} value={item.value}>{item.label}</option>;
}.bind(this));
},
我的onChange方法适用于以下值:
My onChange method works fine with the value:
onChange: function(event) {
var newValue = event.nativeEvent.target.value;
this.props.renderProps.onSaveCare(newValue);
this.setState({value: newValue});
this.toggleEdit();
},
有没有办法可以获得选项文字?这给了我未定义的
Is there a way I can get the option text? This gives me undefined
event.nativeEvent.target.text; //undefined
推荐答案
这样的事情应该做
var index = event.nativeEvent.target.selectedIndex;
event.nativeEvent.target[index].text
这是一个演示
Here is a demo http://jsbin.com/vumune/4/
这篇关于使用react js获取选定的选项文本?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!