• Как сделать изменения значения в зависимости от выбранного input radio?

    tsepen
    @tsepen
    Frontend developer
    <div class="card">
      <h4>Пицца «Пепперони»</h4>
      <img src="images/pizza.png">
      <p>Пепперони, перец халапеньо, сыр моцарелла, пицца-соус, травы прованса</p>
      <input type="radio" class="radio" value="470" id="option1" name="radio" onchange="func()"/>
      <label for="option1">32 см</label>
      <input type="radio" class="radio" value="390" id="option2" name="radio" onchange="func()"/>
      <label for="option2">24 см</label>
      <p id="result"></p>
    </div>


    const result = document.getElementById('result')
    const radio = document.querySelector('input[name = "radio"]')
    
    function func() {
      const checked = document.querySelector('input[name = "radio"]:checked');
      result.innerText = checked.value
    }
    Ответ написан
    Комментировать