用於將元素樣式複製為偽克隆的jQuery 外掛程式
可以使用多種方法來創建具有不同標籤的元素的偽克隆在jQuery 中。這裡有詳細的解釋和解決方案:
jQuery 的getCompulatedStyle 插件
對於傳回元素的計算樣式物件的特定要求,您可以使用jQuery getStyleObject 插件,它從任何元素檢索所有可能的樣式,包括IE 瀏覽器。
用法:
var style = $("#original").getStyleObject();
修改jQuery 的CSS 方法
另一種方法是修改jQuery 的css 方法如下:
jQuery.fn.css2 = jQuery.fn.css; jQuery.fn.css = function() { if (arguments.length) return jQuery.fn.css2.apply(this, arguments); var styleObj = {}; // List of style properties to get var styleList = ['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']; for (var i = 0; i < styleList.length; i++) { styleObj[styleList[i]] = jQuery.fn.css2.call(this, styleList[i]); } return styleObj; };另一種方法是修改jQuery 的css 方法如下:
var style = $('#original').css();透過此修改,您可以透過呼叫:
其他編輯來取得第一個符合元素的計算樣式物件方法
以上是如何使用 jQuery 偽克隆元素樣式?的詳細內容。更多資訊請關注PHP中文網其他相關文章!