logo

Crowdly

Browser

Add to Chrome

SPLETNE TEHNOLOGIJE IN OZNAČEVALNI JEZIKI

Looking for SPLETNE TEHNOLOGIJE IN OZNAČEVALNI JEZIKI test answers and solutions? Browse our comprehensive collection of verified answers for SPLETNE TEHNOLOGIJE IN OZNAČEVALNI JEZIKI at estudij.um.si.

Get instant access to accurate answers and detailed explanations for your course questions. Our community-driven platform helps students succeed!

Izberite pravilno DOM strukturo, ki nastane ob izvedni spodnje JavaScript kode:

 

<div id="predmet">

<h3 id="naslov">Spletne tehnologije in označevlani jeziki</h3>

<div>

<p id="opis">

Spoznavanje s spletnimi tehnologijami in označevalnimi jeziki.

Osnovna uporaba skriptnega jezika JavaScript.

</p>

</div>

</div>

<script>

const div = document.createElement("div"

);

const p = document.createElement("p"

);

p.appendChild(document.createTextNode(

"Izvajalci: "

))

const pIz1 = document.createElement("p"

);

pIz1.appendChild(document.createTextNode(

"Gregor Jošt"

));

const pIz2 = document.createElement("p"

);

pIz2.appendChild(document.createTextNode(

"Viktor Taneski"

));

div.appendChild(p);

div.appendChild(pIz1);

div.appendChild(pIz2);

const element = document.getElementById("predmet"

);

element.appendChild(div);

const

parent = element.lastChild;

parent.parentNode.removeChild(parent);

</script>

0%
0%
0%
View this question

Izberite pravilno DOM strukturo, ki nastane ob izvedni spodnje JavaScript kode:

<div id="nanizanka">

<h3 id="naslov">Game of Thrones</h3>

<p id="opis">

Nine noble families fight for control over

the mythical lands of Westeros, while an ancient enemy returns after

being dormant for thousands of years.

</p>

</div>

<script>

const para = document.createElement("p"

);

const node = document.createTextNode("Cast: Emilia Clarke, Kit Harington."

);

para.appendChild(node);

const element = document.getElementById("nanizanka"

);

const child = document.getElementById("opis"

);

element.insertBefore(para, child);

</script>

0%
0%
100%
View this question
View this question

Kaj izpiše konzola?

let polje1 = ['a', 'b', 'c', 'd'

];

let polje2 = ['e', 'f'

];

polje2.push([...polje1]);

console.log(polje2);

0%
0%
100%
0%
View this question
Kaj izpiše spodnja koda? (rezultat klica je prikazan tukaj

)

fetch('https://api.tvmaze.com/singlesearch/shows?q=fargo'

)

.then(response

=>

response.json())

.then(data

=>

console.log(data.name));

0%
0%
0%
100%
View this question
View this question

V kateri element dokumenta HTML moramo vključiti knjižnici jQuery in jQuery UI, da jih lahko uporabljamo?

0%
0%
0%
0%
0%
0%
View this question
View this question

Katera koda spodaj skrije element v 5 sekundah in ga potem prikaže v 3 sekundah?

100%
0%
0%
0%
0%
View this question

Katera je pravilna koda za preverjanje ustreznosti vsebine določenega vnosnega polja?

0%
0%
100%
0%
View this question

Want instant access to all verified answers on estudij.um.si?

Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!

Browser

Add to Chrome