Heim > Artikel > Web-Frontend > So ermitteln Sie den Maximalwert von drei Zahlen in Javascript
So ermitteln Sie den Maximalwert von drei Zahlen in Javascript: Erstellen Sie zunächst eine HTML-Beispieldatei und geben Sie dann drei Werte ein. Übergeben Sie schließlich „Math.max(inps[0].value,inps[1].value,inps[2 ].value)“, um den Maximalwert von drei Zahlen zu ermitteln.
Die Betriebsumgebung dieses Artikels: Windows7-System, Javascript-Version 1.8.5, DELL G3-Computer
Wie finde ich den Maximalwert von drei Zahlen mit Javascript?
So finden Sie den Maximalwert durch Eingabe von drei Zahlen in Javascript
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>Document</title> </head> <body> <input type="text"><br> <input type="text"><br> <input type="text"><br> <input type="button" value="确认"> </body> <script> var inps = document.querySelectorAll("input"); inps[3].onclick = function(){ alert(Math.max(inps[0].value,inps[1].value,inps[2].value)); //得到的.value是string型的,需要转换为number var a = Number(inps[0].value); var b = Number(inps[1].value); var c = Number(inps[2].value); if(a>b){ if(a>c){ alert(a); }else{ alert(c); } }else{ if(b>c){ alert(b); }else{ alert(c); } } // 枚举法 列举所有可能 if(a>=b && a>=c){ alert(a); } if(b>=a && b>=c){ alert(b); } if(c>=a && c>=b){ alert(c); } //定义中间变量,定义最大值 var max = 0; if(a >= max){ max = a; } if(b >= max){ max = b; } if(c >= max){ max = c; } alert(max); } </script> </html>
Empfohlenes Lernen: „Javascript-Tutorial für Fortgeschrittene“
Das obige ist der detaillierte Inhalt vonSo ermitteln Sie den Maximalwert von drei Zahlen in Javascript. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!