Jump to content
  • 0

Вывод нескольких результатов вычисления скрипта.


fiver
 Share

Question

Добрый день!

 

Понимаю что вопрос глупый и он от незнания js, но тем не менее мне не удалось найти ответ самостоятельно.

 

Есть скрипт который считает 3 разных результата и есть форма из которой берутся значения.

И есть 3 поля, куда надо вывести эти 3 значения.

Но по непонятной мне причине, во всех 3-х полях выводится первое значение.

 

Вопрос: как вывести в каждое поле свое значение?

<script>        function SumAll()        {		var myform = document.forms.myform;		var a=parseFloat(myform.a.value);		var c=parseFloat(myform.c.value);                        var sum = (a + c)/0.001532;        var sum2 = Math.round(sum)/100;       		myform.som.value =  sum2;                var ms7 = (a + c)/0.000938;        var ms72 = Math.round(sum)/100;       		myform.maslo72.value =  ms72;                var ms8 = (a + c)/0.00083;        var ms82 = Math.round(sum)/100;       		myform.maslo82.value =  ms82;                }</script><center>        <div id='kalk_form'><form method=post id="myform"><div class='klk'><h2>МОЛОКО</h2><table border='0' cellpadding=5 cellspacing=0><tr><td><b>Закупочная цена молока:</b><br/><input type="number" name="a" value=18  > руб. за 1 кг.</td></tr><tr><td>Стоимость переработки килограмма молока:</b><br/><input type="number" name="c" value=5.5 > руб. за 1 кг.</td></tr></table></div>все поля обязательны к заполнению<br><br><input type="button" name="sum" value="СЧИТАТЬ" onClick="SumAll()" class='klk_btn' /><br><br>Цена СОМ:<br><input type="number" readonly="readonly" id="som" class='klk_rez' /> руб. за 1 кг.<br><br>Цена масла 72,5% жирности:<br><input type="number" readonly="readonly" id="maslo72" class='klk_rez' /> руб. за 1 кг.<br><br>Цена масла 82% жирности:<br><input type="number" readonly="readonly" id="maslo82" class='klk_rez' /> руб. за 1 кг.</form></div></center>
Link to comment
Share on other sites

2 answers to this question

Recommended Posts

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy