使用此代码,我创建了一个<select>
元素:
$('ul.category-list').each(function () {
var list = $(this),
select = $(document.createElement('select')).insertBefore($(this).hide()).change(function () {
window.location.href = $(this).val();
});
$('>li a', this).each(function () {
var option = $(document.createElement('option'))
.appendTo(select)
.val(this.href)
.html($(this).html());
if ($(this).attr('class') === 'selected') {
option.attr('selected', 'selected');
}
});
list.remove();
});
如何为<select>
元素提供id或类,以便用CSS控制它?
答案 0 :(得分:0)
<div class="an-element"></div>
.your-class {
color: orange;
}
$(".an-element").append("<div class='your-class'>Test</div>");