gpt4 book ai didi

javascript - 设置输入文本框中输入的最小数值

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

我试图将允许的最小输入量设置为 1.00,并且不允许 0.99 或小于 1.00 的任何值

<input type="text" onkeyup="switchSlider(this.value, 1)" value="25.00" class="master-amount" name="master-amount" id="master-amount">

最佳答案

用户 HTML min 属性

<input type="number" min="1.00" onkeyup="switchSlider(this.value, 1)" value="25.00" class="master-amount" name="master-amount" id="master-amount">

这是一个供您引用的示例

http://www.w3schools.com/tags/tryit.asp?filename=tryhtml5_input_max_min

关于javascript - 设置输入文本框中输入的最小数值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25253282/

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