Показать сообщение отдельно
  #4 (permalink)  
Старый 04.02.2010, 02:04
Любитель
Отправить личное сообщение для JsLoveR Посмотреть профиль Найти все сообщения от JsLoveR
 
Регистрация: 16.12.2009
Сообщений: 422

Saimon7887, может Вам пригодится:
<script type="text/javascript">
function res()
{
var p=1;
 var All=document.forms['formSum'];
for(var i = 0; i < All.elements.length; ++i) {
	if(All.elements[i].checked){
	p=p*(parseInt(All.elements[i].value));
	 document.formSum.showres.value=p;}
 }
}

</script>

<form name="formSum">
<input type="checkbox" name="q1"  onclick="res()"    value="2" />2
<input type="checkbox" name="q2"  onclick="res()" value="4" />4
<input type="checkbox" name="q3"  onclick="res()" value="6" />6
<input type="checkbox" name="q4"  onclick="res()" value="8" />8
<input type="checkbox" name="q5"  onclick="res()" value="10" />10
<input type="checkbox" name="q6"  onclick="res()" value="12" />12
<input type="checkbox" name="q7"  onclick="res()" value="14" />14
<input type="checkbox" name="q8"  onclick="res()" value="16" />16
<input type="checkbox" name="q9"  onclick="res()" value="18" />18
<input type="checkbox" name="q10"  onclick="res()" value="20" />20
<input type="text" name="showres" size="10"/>
<input type="reset" value="Сбросить"/>
</form>
</form>

На изучение

Последний раз редактировалось JsLoveR, 04.02.2010 в 17:39.
Ответить с цитированием