我有一个jQuery代码,它将从select
创建ul li menu
。我想从父菜单添加optgroup
,但不知道如何。这是我的代码:
// Create the dropdown base
jQuery("<select />").appendTo("#module-menu");
// Create default option "Go to..."
jQuery("<option />", {
"selected": "selected",
"value" : "",
"text" : "Go to..."
}).appendTo("#module-menu select");
// Populate dropdown with menu items
jQuery("#menu a").each(function() {
var el = jQuery(this);
jQuery("<option />", {
"value" : el.attr("href"),
"text" : el.text()
}).appendTo("#module-menu select");
});
jQuery("#module-menu select").change(function() {
window.location = jQuery(this).find("option:selected").val();
});
答案 0 :(得分:3)
$('#parent')
.append($('<select>')
.append($('<optgroup>')
.prop('label', 'group 1')
.append($('<option>')
.text('option 1'))));
Another example taking data from ul.代码:
var sel = $('<select>');
$('#parent').append(sel);
$('#menu>li').each(function()
{
var group = $('<optgroup>')
.prop('label', $(this).find('>span').text());
sel.append(group);
$(this).find('ul>li').each(function()
{
var opt = $('<option>')
.text($(this).find('>span').text());
group.append(opt);
});
});