Jump to content
  • 0

Вычисление на javascript


meta
 Share

Question

Я в javascript новичок и не могу разобраться с простеньким калькулятором.

Вот код в html

<form name="forma1">
<p>Первое значение <input type="checkbox" name="t1" value="5" /></p>
<p>Второе значение <input type="checkbox" name="t2" value="6" /></p>
<p>Третее <select name="t3">
<option value=" "></option>
<option value="150">150</option>
<option value="140">140</option>
<option value="170">170</option>
</select></p>
<p><input type="button" name="button" value="Вычислить" onClick="areaRectangle('res');"></p>
<p>Равно <input type="text" name="res" size="11" /></p>
</form>

А вот сам скрипт

function areaRectangle(){
if (forma1.t1.checked){
var a=parseInt(document.forma1.t1.value);
}
if (forma1.t2.checked){
var b=parseInt(document.forma1.t2.value);
}
var c=parseInt(document.forma1.t3.value);
var s=a+b+c;
document.forma1.res.value=s;
}

Тут у меня получается, что обязательно надо выбирать все чекбоксы иначе не срабатывает, но мне надо, чтобы значение не отмеченного чекбокса ровнялось нулю. Как это сделать?

Link to comment
Share on other sites

9 answers to this question

Recommended Posts

  • 0

сам в теме не сильно. но получилось если так:

function areaRectangle(){
if (forma1.t1.checked==true){var a=parseInt(document.forma1.t1.value)} else{var a=0};
if (forma1.t2.checked==true){var b=parseInt(document.forma1.t2.value)} else{var b=0};

var c=parseInt(document.forma1.t3.value);
var s=a+b+c;
document.forma1.res.value=s;
}

не знаю на скока корректно

Link to comment
Share on other sites

  • 0

Теперь возникла другая проблема. с чекбоксами все отлично работает, а как быть с выпадающим списком?

 <select name="t3">
<option value="0">0</option>
<option value="150">150</option>
<option value="140">140</option>
<option value="170">170</option>
</select>

Link to comment
Share on other sites

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