Сообщение от piko
|
Объясните, пожалуйста, в чем тут дело
|
В типе значения. Т.ч. усиль т.с. нажим.
<!DOCTYPE html>
<html>
<head>
<title>Пыточная</title>
<style type="text/css">
</style>
<script type="text/javascript">
function countSum() {
var a = document.productform.ord_min.value; //1
var c = document.productform.ord_cost.value; //500
var m = document.productform.ord_max.value; //100
*!*
a=parseInt(a)
c=parseInt(c)
m=parseInt(m)
*/!*
var res = a * c;
if(a <= m) document.productform.ord_res.value = res;
}
</script>
</head>
<body>
<form name="productform" action="" method="post">
<p class="pbig">500<span> руб / кг</span></p>
<label>Укажите объем заказа (1 - 100):</label><br>
<input type="hidden" name="ord_cost" value="500">
<input type="hidden" name="ord_max" value="100">
<input type="text" class="field" name="ord_min" value="1" onkeyup="countSum();">
<label> * цена = </label>
<input type="text" class="field" name="ord_res" value="500">
<input type="button" class="ordbutton" value="в корзину">
</form>
</body>
</html>