Показать сообщение отдельно
  #2 (permalink)  
Старый 23.02.2019, 12:16
Аватар для MC-XOBAHCK
Профессор
Отправить личное сообщение для MC-XOBAHCK Посмотреть профиль Найти все сообщения от MC-XOBAHCK
 
Регистрация: 06.08.2017
Сообщений: 473

<script>
    function plus() {
        document.querySelector('#temp').value++;
        document.querySelector('#output').textContent = document.querySelector("#temp").value;
    }

    function minus() {
        document.querySelector('#temp').value--;
        document.querySelector('#output').textContent = document.querySelector("#temp").value;
    }
</script>
<form name="adder">
    <input type="text" name="temp" id="temp" value="22" size="4" /><br />
    <input type="button" value="+" onclick="plus()">
    <input type="button" value="-" onclick="minus()">
    <p>____________</p>
    <span id="output"></span>
</form>
Ответить с цитированием