คุณสมบัติ element.style ช่วยให้คุณทราบเฉพาะคุณสมบัติ CSS ที่กำหนดเป็นแบบอินไลน์ในองค์ประกอบนั้น (โดยทางโปรแกรมหรือกำหนดไว้ในแอตทริบิวต์สไตล์ขององค์ประกอบ) คุณควรจะได้รับรูปแบบการคำนวณ
ไม่ใช่เรื่องง่ายที่จะทำในลักษณะข้ามเบราว์เซอร์ IE มีวิธีของตัวเองผ่านคุณสมบัติ element.currentStyle และวิธีมาตรฐาน DOM ระดับ 2 ที่ใช้งานโดยเบราว์เซอร์อื่น ๆ นั้นใช้วิธีการ document.defaultView.getComputedStyle
สองวิธีมีความแตกต่างเช่นคุณสมบัติ IE element.currentStyle คาดหวังว่าคุณเข้าถึงชื่อคุณสมบัติ CSS ที่ประกอบด้วยคำสองคำหรือมากกว่าใน camelCase (เช่น maxHeight, fontSize, backgroundColor ฯลฯ ) วิธีมาตรฐานคาดหวังคุณสมบัติด้วย คำที่คั่นด้วยเครื่องหมายขีดกลาง (เช่นความสูงสูงสุดขนาดตัวอักษรสีพื้นหลัง ฯลฯ ) ......
function getStyle(el, styleProp) {
var value, defaultView = (el.ownerDocument || document).defaultView;
// W3C standard way:
if (defaultView && defaultView.getComputedStyle) {
// sanitize property name to css notation
// (hyphen separated words eg. font-Size)
styleProp = styleProp.replace(/([A-Z])/g, "-$1").toLowerCase();
return defaultView.getComputedStyle(el, null).getPropertyValue(styleProp);
} else if (el.currentStyle) { // IE
// sanitize property name to camelCase
styleProp = styleProp.replace(/\-(\w)/g, function(str, letter) {
return letter.toUpperCase();
});
value = el.currentStyle[styleProp];
// convert other units to pixels on IE
if (/^\d+(em|pt|%|ex)?$/i.test(value)) {
return (function(value) {
var oldLeft = el.style.left, oldRsLeft = el.runtimeStyle.left;
el.runtimeStyle.left = el.currentStyle.left;
el.style.left = value || 0;
value = el.style.pixelLeft + "px";
el.style.left = oldLeft;
el.runtimeStyle.left = oldRsLeft;
return value;
})(value);
}
return value;
}
}
อ้างอิงหลัก stackoverflow