2

在此处输入图像描述

在自动化代码中,我想用大于 0 的数字填充文本框。 setvalue() 不起作用。用户必须单击向上箭头(见图)才能使文本框可编辑。我怎样才能做到这一点?

 <input aria-invalid="false" autocomplete="off" class="MuiInputBase-input MuiOutlinedInput-input MuiInputBase-inputMarginDense MuiOutlinedInput-inputMarginDense" id="yieldGoal" name="yieldGoal" placeholder="0.00" type="number" min="0.01" step="0.01" data-test="new-program-form__yield-goal-input" value="0.00"> 

到目前为止,我已经尝试设置属性stepvalue其值大于 0.0。那没起效。

$('#yieldGoal').setAttribute('step', "2.0")

增加文本框中的值

4

2 回答 2

1

如果这是 texbox 并且您使用 jQuery,请尝试

$('#yieldGoal').val("2.0")
于 2019-11-12T05:45:46.377 回答
1

请用于val设置输入元素的值。

$('#yieldGoal').val("2.0");

希望这能解决问题。

于 2019-11-12T05:44:33.893 回答