In questo ultimo episodio di "Dissecting jQuery", discuteremo del testo()
metodo, così come una nuova funzionalità, come da jQuery 1.4, di cui potresti non essere a conoscenza.
Iscriviti alla nostra pagina YouTube per guardare tutti i tutorial video!
testo
Metodotext: function (text) if (jQuery.isFunction (text)) return this.each (function (i) var self = jQuery (this); self.text (text.call (this, i, self.text ()));); if (typeof text! == "object" && text! == undefined) return this.empty (). append ((questo [0] && this [0] .ownerDocument || document) .createTextNode (testo)) ; return jQuery.text (this);
Tieni presente che la possibilità di passare una funzione a testo()
il metodo è disponibile solo tramite l'utente della versione 1.4 o successiva. Ma non è un problema; e se stai ancora usando 1.3, dovresti davvero smettere! :)