gpt4 book ai didi

reactjs - 带箭头的小数增加 - Textfield Material UI

转载 作者:行者123 更新时间:2023-12-04 03:56:00 24 4
gpt4 key购买 nike

我正在使用 Material UI 的 OutlinedInput 以允许用户输入数字。

type为数字时,浏览器会自动在输入栏中添加两个小箭头。这可以。HOVEWER 箭头将输入增加或减少“1”。我希望他们将输入增加或减少“0.01”。

  <OutlinedInput
type="number"
placeholder="0"
value={value}
onChange={onChange}
classes={{
root: classNames(classes.myStyle)
}}
/>

我的风格

myStyle: {
color: "blue"
width: "90px,
step: '0.01'
},

最佳答案

只需添加 inputProps={{ step: ".01"}}

<OutlinedInput
inputProps={{ step: ".01" }}
type="number"
placeholder="0"
value={value}
onChange={onChange}
classes={{
root: classNames(classes.myStyle)
}}
/>

关于reactjs - 带箭头的小数增加 - Textfield Material UI,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63898018/

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