在最新一集中的「剖析 jQuery」中,我們將討論 text()
方法,以及 jQuery 1.4 中您可能還不知道的一項新功能。
訂閱我們的 YouTube 頁面以觀看所有影片教學!
text
方法的 jQuery 原始碼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( (this[0] && this[0].ownerDocument || document).createTextNode( text ) ); } return jQuery.text( this ); }
請記住,只有 1.4 或更高版本的使用者才能將函數傳遞給 text()
方法。但這沒問題;如果您仍在使用 1.3,您真的應該停止使用! :)
以上是快速提示:解析jQuery - 文本的詳細內容。更多資訊請關注PHP中文網其他相關文章!