Напишите HTML-страницу с javascript, которая обменивается информацией в двух абзацах при нажатии кнопки.
Я попытался запустить программу ниже, но она не сработала.
пожалуйста, не могли бы вы помочь мне выловить ошибку, которую я мог бы сделать в коде?
Что я уже пробовал:
<p>Click the button to swap the text of the DIV element:</p> <p>Click Me</p> <p1 id="myDIV">Para #1: Hello! Click the button on top of me to get the paragraphs interchanged.<br> <p2 id="urDIV">Para #2: You can interchange information between this paragraph and another paragraph by clicking the button. function swapFunction() { var x = document.getElementById("p1").innerText; var y = document.getElementById("p2").innerText; document.getElementById("p1").value = y; document.getElementById("p2").value = x; } }