2016 m. kovo 15 d., antradienis

70-480: įvairūs, XMLHttpRequest readyState and status

CSS3 nth-child

The :nth-child(n) selector matches every element that is the nth child, regardless of type, of its parent.
n can be a number, a keyword, or a formula. Pavyzdžiui, li:nth-child(3)  pažymės 3 sąrašo elementą.

Taip pat galite naudoti formulę an+b, kai
a- ciklo skaičius
n- ciklo kintamasis
b- nurodo, kurį elementą pažymėsime

Pavyzdžiui, li:nth-child(10n+3) - pažymės 3 elementą iš kiekvienos 10 elementų grupės. Taigi, jei ul turi 45 elementus, tai bus pažymėti 3, 13, 23, 33 ir 43.

Taip pat galime naudoti odd ir even, kad pažymėtume porinius arba neporinius elementus.

Pavyzdžiui, li:nth-child(odd) pažymi 1, 3, 5, 7 ir t.t.

CSS3 nth-of-type

Raudonai pažymės kiekvieną p elementą, kuris yra antras elementas tėviniam elementui

p:nth-of-type(2)
{
background:#ff0000;
}


JQuery.ajax

contentType (default: 'application/x-www-form-urlencoded; charset=UTF-8')
Type: String
When sending data to the server, use this content type. Default is "application/x-www-form-urlencoded; charset=UTF-8", which is fine for most cases. If you explicitly pass in a content-type to $.ajax(), then it is always sent to the server (even if no data is sent). The W3C XMLHttpRequest specification dictates that the charset is always UTF-8; specifying another charset will not force the browser to change the encoding.

type (default: 'GET')
Type: String
The type of request to make ("POST" or "GET"), default is "GET". Note: Other HTTP request methods, such as PUT and DELETE, can also be used here, but they are not supported by all browsers.

onLine

navigator.onLine savybė grąžina boolean reikšmę, kuri rodo, ar browseris prisijungęs prie interneto, ar ne.


Navigator objektas laiko informaciją apie browser.

XMLHttpRequest


readyState gražiną dabartinio dokumento statusą:
0 - užklausa neinicializuota (request not inicialized);
1 - serverio ryšys nustatytas (server connection established)
2 - užklausa gauta (request received)
3 - užklausa vykdoma (processing request)
4 - užklausa baigta ir atsakymas paruoštas (request finished and response is ready)

status:
100 - continue
200 - standartinis atsakymas sėkmingai HTTP užklausai
300 - rasti keli atsakymai pagal pateiktus duomenis
400 - bloga užklausa

Komentarų nėra:

Rašyti komentarą