diff --git a/24_11_12/24_11_12 - Frontend.pptx b/24_11_12/24_11_12 - Frontend.pptx new file mode 100644 index 0000000..53c884f Binary files /dev/null and b/24_11_12/24_11_12 - Frontend.pptx differ diff --git a/24_11_12/Nagy Diakteszt linkek.txt b/24_11_12/Nagy Diakteszt linkek.txt new file mode 100644 index 0000000..6a59fcd --- /dev/null +++ b/24_11_12/Nagy Diakteszt linkek.txt @@ -0,0 +1,3 @@ +https://nagydiaktesztek.hu/agrarteszt4/kviz +https://nagydiaktesztek.hu/banktudosteszt2/kviz +https://nagydiaktesztek.hu/filmteszt8/kviz \ No newline at end of file diff --git a/24_11_12/Weboldal link - Otthoni elérés.txt b/24_11_12/Weboldal link - Otthoni elérés.txt new file mode 100644 index 0000000..f9a49d4 --- /dev/null +++ b/24_11_12/Weboldal link - Otthoni elérés.txt @@ -0,0 +1 @@ +https://sites.google.com/view/bzoktatas/kezd%C5%91lap \ No newline at end of file diff --git a/24_11_12/index.html b/24_11_12/index.html new file mode 100644 index 0000000..5a45ac4 --- /dev/null +++ b/24_11_12/index.html @@ -0,0 +1,11 @@ + + + + + + Document + + + + + \ No newline at end of file diff --git a/24_11_12/xmlhttprequest.js b/24_11_12/xmlhttprequest.js new file mode 100644 index 0000000..f8e47a9 --- /dev/null +++ b/24_11_12/xmlhttprequest.js @@ -0,0 +1,24 @@ +const url = "https://jsonplaceholder.typicode.com/posts"; +async function main() { + let xhttp = new XMLHttpRequest(); + xhttp.open("GET", url, true); + + xhttp.onreadystatechange = async function(){ + if (xhttp.readyState === 4){ + if (xhttp.status === 200){ + let sol = await xhttp.responseText; + //let sol = await JSON.parse(JSON.stringify(xhttp.responseText)); + console.log(`Sikeres kérés: ${sol}`); + } else if(xhttp.status === 404){ + console.log("Az erőforrás nem található - 404 hibakód"); + } else{ + console.error(`Hiba történt, státuszkód: ${xhttp.status}`); + } + + } + } + xhttp.send(); +} + +main(); +