Usare Javascript invece che jQuery nei tuoi progetti può essere una mossa molto intelligente, non solo imparerai più a fondo le dinamiche del linguaggio e diventarai naturalmente più esperto, ma incrementerai notevolmente le performance del tuo sito.
Se lavori in grossi progetti e applicazioni che richiedono tante linee di codice lavorare in puro Javascript è un po frustrante, in questo caso un mix di JQuery e Javascript è necessario.
- [Eventi] (#eventi)
- [Selettori] (#selettori)
- [Modifica Attributi] (#modifica)
- [Aggiungere o togliere una classe] (#addremove)
- [Manipolazione del DOM] (#DOM)
- [Transversing, muoversi nel DOM] (#transversing)
- [AJAX] (#ajax)
- [JSONP] (#jsonp)
// jQuery
$(document).ready(function() {
// code
})
// javascript
document.addEventListener('DOMContentLoaded', function() {
// code
})
// jQuery
$('a').click(function() {
// code…
})
// javascript
[].forEach.call(document.querySelectorAll('a'), function(el) {
el.addEventListener('click', function() {
// code…
})
})
[torna all'indice ↑] (#TOC)
// jQuery
var divs = $('div')
// javascript
var divs = document.querySelectorAll('div')
// jQuery
var newDiv = $('<div/>')
// javascript
var newDiv = document.createElement('div')
[torna all'indice ↑] (#TOC)
// jQuery
$('img').filter(':first').attr('alt', 'My image')
// javascript
document.querySelector('img').setAttribute('alt', 'My image')
[torna all'indice ↑] (#TOC)
// jQuery
newDiv.addClass('foo')
// javascript
newDiv.classList.add('foo')
// jQuery
newDiv.toggleClass('foo')
// javascript
newDiv.classList.toggle('foo')
[torna all'indice ↑] (#TOC)
// jQuery
$('body').append($('<p/>'))
// javascript
document.body.appendChild(document.createElement('p'))
// jQuery
var clonedElement = $('#about').clone()
// javascript
var clonedElement = document.getElementById('about').cloneNode(true)
// jQuery
$('#wrap').empty()
// javascript
var wrap = document.getElementById('wrap')
while(wrap.firstChild) wrap.removeChild(wrap.firstChild)
[torna all'indice ↑] (#TOC)
// jQuery
var parent = $('#about').parent()
// javascript
var parent = document.getElementById('about').parentNode
// jQuery
if($('#wrap').is(':empty'))
// javascript
if(!document.getElementById('wrap').hasChildNodes())
// jQuery
var nextElement = $('#wrap').next()
// javascript
var nextElement = document.getElementById('wrap').nextSibling
[torna all'indice ↑] (#TOC)
// jQuery
$.get('//example.com', function (data) {
// code
})
// javascript
var httpRequest = new XMLHttpRequest()
httpRequest.onreadystatechange = function (data) {
// code
}
httpRequest.open('GET', url)
httpRequest.send()
// jQuery
$.post('//example.com', { username: username }, function (data) {
// code
})
// javascript
var httpRequest = new XMLHttpRequest()
httpRequest.onreadystatechange = function (data) {
// code
}
httpRequest.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded')
httpRequest.open('POST', url)
httpRequest.send('username=' + encodeURIComponent(username))
[torna all'indice ↑] (#TOC)
// jQuery
$.getJSON('//openexchangerates.org/latest.json?callback=?', function (data) {
// code
})
// javascript
function success(data) {
// code
}
var scr = document.createElement('script')
scr.src = '//openexchangerates.org/latest.json?callback=formatCurrency'
document.body.appendChild(scr)
[torna all'indice ↑] (#TOC)