Bence gerçek bir çözüm buldum. Yeni bir işlev haline getirdim:
jQuery.style(name, value, priority);
Bunu, .style('name')
tıpkı değerleri gibi .css('name')
almak, CSSStyleDeclaration'ı almak .style()
ve değerleri ayarlamak için kullanabilirsiniz - önceliği 'önemli' olarak belirleme yeteneğiyle. Bkz bu .
gösteri
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'));
İşte çıktı:
null
red
blue
important
İşlev
(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);
Bkz bu okuma ve CSS değerleri ayarlamak için nasıl örnekler için. Benim sorunum zaten !important
diğer tema CSS ile çakışmaları önlemek için benim CSS genişliği için ayarlamıştı , ama stil özniteliğine ekleneceği için jQuery genişliğinde yaptığım herhangi bir değişiklik etkilenmeyecekti.
uygunluk
Bu makaleyi kullanarak önceliği ayarlamak için setProperty
, Bu Makale IE 9+ ve diğer tüm tarayıcılar için destek olduğunu söylüyor. IE 8 ile denedim ve başarısız oldu, bu yüzden işlevlerim için destek inşa ettim (yukarıya bakın). SetProperty kullanan tüm diğer tarayıcılarda çalışır, ancak <IE 9'da çalışmak için özel koduma ihtiyaç duyacaktır.