コードを少し分割してみてください。.css()
が実際に親で呼び出され、コンテキストthis
で参照されているため、失敗window
しています。
jsフィドル
$(function(){
// Get all elements matching selector 'li span'
var spans = $("li span");
// Loop for each element in spans
spans.each(function () {
// Create the new element as a jQuery object
var elem = $('<div class="colorBox">test</div>');
// Set the new element's background-color to the attribute on the parent
// of the span
elem.css('background-color', $(this).parent().attr("data-background"));
// Prepend the new element to the span (insert it as the first child)
$(this).prepend(elem);
});
});
"Brick Red" を でラップする場合は、またはdiv
を使用する必要があります。.wrap()
.wrapInner()
jsフィドル
$(this).wrap(elem);
アップデート
カスタムチェックボックスを使用している場合は、<label>
タグを利用するより CSS 主導のアプローチをお勧めします。
jsフィドル
HTML
<ul>
<li data-background="#C11B17">
<input type="checkbox" name="color[]" value="Brick_Red" id="checkbox1" />
<label for="checkbox1">
<span>Brick Red</span>
</label>
</li>
</ul>
CSS
input[type=checkbox] {
display:none;
}
input[type=checkbox] + label:before {
display:inline-block;
content:"";
width:1em;
height:1em;
background-color:#CCC;
}
input[type=checkbox]:checked + label:before {
background-color:#C11B17;
}
このメソッドは、ポリフィルなしで IE8+ で機能することに注意してください。