ฉันคิดว่าฉันพบทางออกที่แท้จริงแล้ว ฉันได้ทำให้มันเป็นฟังก์ชั่นใหม่:
jQuery.style(name, value, priority);
คุณสามารถใช้เพื่อรับค่า.style('name')
เช่น.css('name')
รับ CSSStyleDeclaration ด้วย.style()
และตั้งค่า - ด้วยความสามารถในการระบุลำดับความสำคัญเป็น 'สำคัญ' ดูนี่สิ
การสาธิต
var div = $('someDiv');
console.log(div.style('color'));
div.style('color', 'red');
console.log(div.style('color'));
div.style('color', 'blue', 'important');
console.log(div.style('color'));
console.log(div.style().getPropertyPriority('color'));
นี่คือผลลัพธ์:
null
red
blue
important
ฟังก์ชั่น
(function($) {
if ($.fn.style) {
return;
}
// Escape regex chars with \
var escape = function(text) {
return text.replace(/[-[\]{}()*+?.,\\^$|#\s]/g, "\\$&");
};
// For those who need them (< IE 9), add support for CSS functions
var isStyleFuncSupported = !!CSSStyleDeclaration.prototype.getPropertyValue;
if (!isStyleFuncSupported) {
CSSStyleDeclaration.prototype.getPropertyValue = function(a) {
return this.getAttribute(a);
};
CSSStyleDeclaration.prototype.setProperty = function(styleName, value, priority) {
this.setAttribute(styleName, value);
var priority = typeof priority != 'undefined' ? priority : '';
if (priority != '') {
// Add priority manually
var rule = new RegExp(escape(styleName) + '\\s*:\\s*' + escape(value) +
'(\\s*;)?', 'gmi');
this.cssText =
this.cssText.replace(rule, styleName + ': ' + value + ' !' + priority + ';');
}
};
CSSStyleDeclaration.prototype.removeProperty = function(a) {
return this.removeAttribute(a);
};
CSSStyleDeclaration.prototype.getPropertyPriority = function(styleName) {
var rule = new RegExp(escape(styleName) + '\\s*:\\s*[^\\s]*\\s*!important(\\s*;)?',
'gmi');
return rule.test(this.cssText) ? 'important' : '';
}
}
// The style function
$.fn.style = function(styleName, value, priority) {
// DOM node
var node = this.get(0);
// Ensure we have a DOM node
if (typeof node == 'undefined') {
return this;
}
// CSSStyleDeclaration
var style = this.get(0).style;
// Getter/Setter
if (typeof styleName != 'undefined') {
if (typeof value != 'undefined') {
// Set style property
priority = typeof priority != 'undefined' ? priority : '';
style.setProperty(styleName, value, priority);
return this;
} else {
// Get style property
return style.getPropertyValue(styleName);
}
} else {
// Get CSSStyleDeclaration
return style;
}
};
})(jQuery);
ดูสิ่งนี้สำหรับตัวอย่างวิธีการอ่านและตั้งค่า CSS ปัญหาของฉันคือฉันได้ตั้งค่า!important
ความกว้างใน CSS ไว้แล้วเพื่อหลีกเลี่ยงความขัดแย้งกับ CSS ธีมอื่น ๆ แต่การเปลี่ยนแปลงใด ๆ ที่ฉันทำกับความกว้างใน jQuery จะไม่ได้รับผลกระทบเนื่องจากจะเพิ่มแอตทริบิวต์สไตล์
ความเข้ากันได้
สำหรับการตั้งค่าด้วยลำดับความสำคัญโดยใช้setProperty
ฟังก์ชั่นบทความนี้กล่าวว่ามีการรองรับ IE 9+ และเบราว์เซอร์อื่น ๆ ทั้งหมด ฉันได้ลองกับ IE 8 แล้วและมันล้มเหลวซึ่งเป็นสาเหตุที่ฉันสร้างการรองรับในฟังก์ชั่นของฉัน (ดูด้านบน) มันจะทำงานกับเบราว์เซอร์อื่น ๆ ทั้งหมดโดยใช้ setProperty แต่จะต้องใช้รหัสที่กำหนดเองของฉันเพื่อทำงานใน <IE 9