我是java Script / ajax的新手
我有四个html文本框。在其他教科书中显示最小值。如果任何文本框没有值,则无需与其他文本框值进行比较。只需比较谁获取该值。 如果我更改任何文本框值,则自动与新值进行比较,如果找到最小值,则更改其他文本框值。
实际上我必须同时插入文本框值以及同一表中其他列的最小值。
<script language="javascript" type="text/javascript">
function maximum() {
a=Number(document.addProduct.pPrice1.value);
b=Number(document.addProduct.pPrice2.value);
c=Number(document.addProduct.pPrice3.value);
D=Number(document.addProduct.pPrice3.value);
m=Math.min(a,b,c,d);
document.addProduct.result.value=m;
}
</script>
答案 0 :(得分:0)
可能有帮助
<script type="text/javascript">
function maximum(){
var a=document.getElementById("1").value;
var b=document.getElementById("2").value;
var c=document.getElementById("3").value;
var d=document.getElementById("4").value;
var m=Math.min(a,b,c,d);
document.getElementById("5").value=m;
}
<input type="text" id="1"/>
<input type="text" id="2"/>
<input type="text" id="3"/>
<input type="text" id="4"/>
<input type="button" onclick="maximum()" value="MIN"/>
<input type="text" id="5">