背景画像がないことがわかっているタグがある場合は、not-selector
(docs)のタグを除外して選択を改善することができます。
$('*:not(span,p)')
さらに、ネイティブAPIアプローチをフィルタで使用することもできます。
$('*').filter(function() {
if (this.currentStyle)
return this.currentStyle['backgroundImage'] !== 'none';
else if (window.getComputedStyle)
return document.defaultView.getComputedStyle(this,null)
.getPropertyValue('background-image') !== 'none';
}).addClass('bg_found');
例:http://jsfiddle.net/q63eU/
フィルタ内のコードは、からでgetStyleコードに基づいています:.filter()
での関数呼び出しを避けるためにfor
文のバージョンを投稿http://www.quirksmode.org/dom/getstyles.html
。
var tags = document.getElementsByTagName('*'),
el;
for (var i = 0, len = tags.length; i < len; i++) {
el = tags[i];
if (el.currentStyle) {
if(el.currentStyle['backgroundImage'] !== 'none')
el.className += ' bg_found';
}
else if (window.getComputedStyle) {
if(document.defaultView.getComputedStyle(el, null).getPropertyValue('background-image') !== 'none')
el.className += ' bg_found';
}
}
このコードは機能していますか?ただ遅い? – raidfive