尝试将您的代码拆分一下。它失败了,因为.css()
实际上是在父级上调用并在您的上下文this
中引用。window
jsFiddle
$(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);
});
});
如果您打算将“砖红色”包裹在 中,div
那么您将需要使用.wrap()
or .wrapInner()
。
jsFiddle
$(this).wrap(elem);
更新
如果您正在使用自定义复选框,我建议您使用一种更加 css 驱动的方法来利用<label>
标签。
jsFiddle
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+ 中有效,无需任何 polyfill。