Тема: chebox и цена
Показать сообщение отдельно
  #7 (permalink)  
Старый 23.07.2015, 19:16
Аватар для Sigizmund2012
Профессор
Отправить личное сообщение для Sigizmund2012 Посмотреть профиль Найти все сообщения от Sigizmund2012
 
Регистрация: 16.07.2014
Сообщений: 267

Ramzes94,
<input id="price" type="text" placeholder="Цена">
  <label>Добавить тысячу<input type="checkbox" id="plusthousand"></label>
  <label>Поставить тысячу<input type="checkbox" id="setthousand"></label>

  <script>
var price = document.getElementById('price');
var plus = document.getElementById('plusthousand');
var set = document.getElementById('setthousand');

plus.onchange = function(e){
  var pricevalue = parseInt(price.value);
  if (this.checked === true && !isNaN(pricevalue) ) {
    price.value = pricevalue + 1000;
  }
};

set.onchange = function(e){
  if (this.checked === true) {
    price.value = 1000;
  }
};

  </script>
Ответить с цитированием