使用jQuery 時,有時需要存取和操作計算的樣式一個元素的。雖然現有的 jQuery 方法(如 width())允許輕鬆操作特定屬性,但需要更全面的方法來複製和應用所有計算樣式。
核心挑戰是圍繞尋找一個jQuery 外掛程式或方法,它可以:
儘管是明顯的需求,但現成的用於此任務的jQuery 插件尚未開發。但是,有一些自訂解決方案可以有效解決此問題。
其中一個解決方案涉及透過覆蓋標準 css() 方法的行為來擴展其行為。如果未提供參數,它將傳回一個具有所有計算樣式的物件。
擴充 CSS 方法:
jQuery.fn.css2 = jQuery.fn.css; jQuery.fn.css = function() { if (arguments.length) return jQuery.fn.css2.apply(this, arguments); var attr = ['font-family','font-size','font-weight','font-style','color', 'text-transform','text-decoration','letter-spacing','word-spacing', 'line-height','text-align','vertical-align','direction','background-color', 'background-image','background-repeat','background-position', 'background-attachment','opacity','width','height','top','right','bottom', 'left','margin-top','margin-right','margin-bottom','margin-left', 'padding-top','padding-right','padding-bottom','padding-left', 'border-top-width','border-right-width','border-bottom-width', 'border-left-width','border-top-color','border-right-color', 'border-bottom-color','border-left-color','border-top-style', 'border-right-style','border-bottom-style','border-left-style','position', 'display','visibility','z-index','overflow-x','overflow-y','white-space', 'clip','float','clear','cursor','list-style-image','list-style-position', 'list-style-type','marker-offset']; var len = attr.length, obj = {}; for (var i = 0; i < len; i++) obj[attr[i]] = jQuery.fn.css2.call(this, attr[i]); return obj; }
另一個值得注意的解決方案是名為 getStyleObject 的 jQuery 外掛。它會擷取所有可能的樣式,包括那些無法透過標準css() 方法存取的樣式:
getStyleObject 外掛程式:
(function($){ $.fn.getStyleObject = function(){ var dom = this.get(0); var style; var returns = {}; if(window.getComputedStyle){ var camelize = function(a,b){ return b.toUpperCase(); } style = window.getComputedStyle(dom, null); for(var i=0;i<style.length;i++){ var prop = style[i]; var camel = prop.replace(/\-([a-z])/g, camelize); var val = style.getPropertyValue(prop); returns[camel] = val; } return returns; } if(dom.currentStyle){ style = dom.currentStyle; for(var prop in style){ returns[prop] = style[prop]; } return returns; } return this.css(); } })(jQuery);
以上是jQuery 如何使用偽克隆和計算樣式來克隆元素樣式?的詳細內容。更多資訊請關注PHP中文網其他相關文章!