Jump to content
  • 0

Не работает вывод суммы двух чисел


Beatus
 Share

Question

<!DOCTYPE html>
<html lang=ru>
    <head>
        <meta charset="utf-8"/>
        <meta name="author" content="DV"/>
        <meta name="keywords" content="Калькулятор"/>
        <meta name="viewport" content="width=device-width, initial-scale=1.0"/>
        <meta name="description" content="Калькулятор"/>
        <title>Калькулятор</title>
        <link rel="stylesheet" href="styles.css">
    </head>
    <body>
        <form oninput="result.value=num1.value+num2.value">
            <h3>Сумма двух чисел</h3>
            <p>Введите первое число: 
                <input type=number size="1" name="num1" autofocus></p>
            <p>Введите второе число: 
                <input type=number size="1" name="num2" autofocus></p>
            <p>Сумма: 
                <output name="result"></output></p>
        </form>
    </body>
</html>

Подскажите пожалуйста почему не работает?

Link to comment
Share on other sites

2 answers to this question

Recommended Posts

  • 0

Я не уверен, что у формы есть событие input, но если даже было бы, то переменные result, num1 и num2 не определены. Они были бы созданы автоматически, если бы это были id, но у тебя-то name.
И я не в курсе, сейчас можно писать js-код в атрибутах без javascript: спереди?
И есть ли у тега <output> свойство value? Может быть, у него textContent?
Подключи Vue, там будет работать так, как ты хочешь, только придётся несколько дополнительных действий сделать, привязывая переменные к инпутам и создавая computed-свойство.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy