Dissecting jQuery - The Text Method

In questo ultimo episodio di "Dissecting jQuery", discuteremo del testo(), così come una nuova funzionalità, come da jQuery 1.4, di cui potresti non essere a conoscenza.


Disponibile anche in questa serie:

  1. Dissecting jQuery - Filtri
  2. Dissecting jQuery - The Text Method


Screencast completo



jQuery Source per il testo Metodo

 text: 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! :)