我正在使用React Bootstrap Dropdown,它将根据您选择的DropDown选项呈现文本。但是,它仅适用于非Firefox的浏览器。
<MenuItem key={item.key} onSelect={this.handleFilterSelect.bind(this)} eventKey={item.key} className="filter-option text-right">
{item.label}
</MenuItem>
我尝试用onClick切换onSelect,但我仍然得到同样的错误。在Firefox consol中,错误说,
"ReferenceError: event is not defined react-bundle-1e7c66351cc2cc9138d2f506e79409f1.js:27:31664"
任何人都知道发生了什么事?