我需要一些关于 javascript 或 jQuery 的帮助。
我有三 (3) 个要过滤的输入字段(三个字段的总和)。
3个输入字段的总和必须是100。如果用户填写超过100,会自动改变总和为100的值。
你可以看到这个例子
<input type="text" name="text1" size="3"> text1<br />
<input type="text" name="text2" size="3"> text2<br />
<input type="text" name="text3" size="3"> text3<br />
<p>The maximum value of total 3 fields above is 100.</p>
<pre>example 1 :
text1 : 20;
text2 : 30;
text3 : 50; (will automatically filled with 50 because the total value must 100)</pre>
<pre>example 2 :
text1 : 37;
text2 : 60;
text3 : 3; (will automatically filled with 3 because the total value must 100)</pre>
谢谢你帮助我,我需要它:)