维科纳蒂 »
×
改变方向
在 Codepen 上打开
更改主题,深色/浅色
<!DOCTYPE html> <html> <body> <h2>Об’єкт XMLHttpRequest</h2> <div id="demo"> <p>Нехай AJAX змінить цей текст.</p> <button type="button" onclick="loadDoc()">Змінити вміст</button> </div> <script> function loadDoc() { const xhttp = new XMLHttpRequest(); xhttp.onload = function() { document.getElementById("demo").innerHTML = this.responseText; } xhttp.open("GET", "ajax_info.txt"); xhttp.send(); } </script> </body> </html>