gpt4 book ai didi

javascript - React-select 在切换时显示键盘

转载 作者:行者123 更新时间:2023-12-03 01:35:09 25 4
gpt4 key购买 nike

我正在使用react-select ^1.2.1,我面临着一个奇怪的行为。当我切换移动 View 键盘中的下拉菜单时,会像屏幕截图那样打开 enter image description here

我里面的组件是这样的:

render() {
return (
<div className="quantity">
<input
id={this.props.id}
type="number"
name={this.props.input.name}
value={this.props.currentTravelersNumber}
className="person-selector"
/>
<div
role="presentation"
className="quantity-button quantity-up"
>
+
</div>
<div
role="presentation"
className="quantity-button quantity-down"
>
-
</div>
</div>

有什么建议吗?也许是输入标签??

最佳答案

我认为您应该在输入上添加“readonly”属性,以避免此元素的默认行为。

<input
id={this.props.id}
type="number"
name={this.props.input.name}
value={this.props.currentTravelersNumber}
className="person-selector"
readonly
/>

关于javascript - React-select 在切换时显示键盘,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51109844/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com