HTML:
Код: Выделить всё
Bible verses
"I am the resurrection and the life."
Jesus Christ
New verse
Код: Выделить всё
function main() {
let button = document.getElementById('new-quote');
let location = document.getElementById('author');
let verses = document.getElementById('quote');
button.addEventListener("click", function () {
fetch('fetch_verse.php')
.then(response => response.json()) // Corrected this line
.then(data => {
verses.innerHTML = '"' + data.verse + '"';
location.innerHTML = data.book;
});
});}main();
Код: Выделить всё
Подробнее здесь: https://stackoverflow.com/questions/786 ... e-database
Мобильная версия