在試圖瞭解jQUIUI是如何製作的時候,我在代碼中看到他們使用了extend
實用程序。然而,它被用來擴展一個匿名對象。jQuery擴展爲匿名對象?
任何人都可以解釋一下嗎?
$.fn.extend({
scrollParent: function(includeHidden) {
var position = this.css("position"),
excludeStaticParent = position === "absolute",
/// and the code goes on
明白了。 '.extend'與'$ .fn.extend'不相似。 – yossi
第一個擴展了你提供的對象,第二個擴展了jQuery的原型 – kapantzak