Показать сообщение отдельно
  #13 (permalink)  
Старый 20.04.2022, 22:16
Аватар для рони
Профессор
Отправить личное сообщение для рони Посмотреть профиль Найти все сообщения от рони
 
Регистрация: 27.05.2010
Сообщений: 33,109

а лучше так
<!DOCTYPE html>
<html>

<head>
    <title>Untitled</title>
    <meta charset="utf-8">
</head>

<body>
    <div>
        <label>
Число 1:
<input type="number" id="numberA">
</label>
    </div>
    <div>
        <label>
Число 2:
<input type="number" id="numberB">
</label>
    </div>
    <div>
        Попыток:
        <input type="number" id="popytki">
    </div>
    <div>
        <button onclick="allFunction(); ">Попробовать</button>
    </div>
    <script>
        function getObj() {
            function getFormValueA() {
                let a = document.getElementById('numberA').value;
                return a;
            };
            let a = getFormValueA();

            function getFormValueB() {
                let b = document.getElementById('numberB').value;
                return b;
            };
            let b = getFormValueB();

            function getPopytkiValue() {
                let c = document.getElementById('popytki').value;
                return c;
            };
            let c = getPopytkiValue();
            let data = {
                chislo_1: a,
                chislo_2: b,
                popytki: c,
            };

            return data;
        };

        function allFunction()
        {
           let data1 = getObj();
           console.log ('data1', data1)
           // тут делайте что хотите с объектом
        }


    </script>
</body>

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