Показать сообщение отдельно
  #2 (permalink)  
Старый 14.12.2012, 15:39
Аватар для lord2kim
Профессор
Отправить личное сообщение для lord2kim Посмотреть профиль Найти все сообщения от lord2kim
 
Регистрация: 03.05.2011
Сообщений: 848

ToshaBoy_55,
Розничная цена: <input type="text" id="price"><br>
Количество товара: <input type="text" id="amount"><br>
Скидка (при >10 ед. товара): <input type="text" id="discount">
<input type="button" value="Определить" id="but">
<script>
document.getElementById("but").onclick = function () {
    var price = document.getElementById("price").value, amount = document.getElementById("amount").value, discount = document.getElementById("discount").value;
    if (isNaN(price) || isNaN(amount)) {
        return alert("вводимые данные должны быть числами");
    }
    if (parseInt(amount) > 10) {
        return alert(amount * price - (discount ? discount : 5) / 100 * amount * price);
    } else {
        return alert(amount * price);
    }
}
</script>


а вообще не мешало бы почитать вам учебник
Ответить с цитированием