私は本当の解決策を見つけたと思います。私はそれを新しい関数にしました:
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で幅に加えた変更は、style属性に追加されるため、影響を受けません。
互換性
この記事では、setProperty
関数を使用して優先度を設定するために、IE 9+およびその他のすべてのブラウザーがサポートされていると述べています。私はIE 8を試してみましたが失敗しました。そのため、関数でサポートしました(上記を参照)。それは、setPropertyを使用する他のすべてのブラウザーで動作しますが、IE 9未満で動作するには、カスタムコードが必要です。