我是新的Bootstrap和卡住了这个问题。我有一个输入字段,只要我输入一个数字,onChange
中的函数就会被调用,但我希望在输入了整个数字后按下“enter”时调用它。验证函数也存在同样的问题——它调用得太快了。
var inputProcent = React.CreateElement(bootstrap.Input, {type: "text",
//bsStyle: this.validationInputFactor(),
placeholder: this.initialFactor,
className: "input-block-level",
onChange: this.handleInput,
block: true,
addonBefore: '%',
ref:'input',
hasFeedback: true
});