我需要一个带有子项编号的嵌套列表,如下所示:
1. Item 1
1.1 - Subitem 1
1.2 - Subitem 2
1.3 - Subitem 3
1.4 - Subitem 4
1.5 - Subitem 5
2. Item 2
2.1 - Subitem 1
2.2 - Subitem 2
2.3 - Subitem 3
2.4 - Subitem 4
2.5 - Subitem 5
嗯,我知道用纯HTML无法达到目的。使用类似的东西并自动编号子列表会很棒:
<ol>
<li>
Item 1
<ol>
<li>Subitem 1</li>
<li>Subitem 2</li>
<li>Subitem 3</li>
<li>Subitem 4</li>
<li>Subitem 5</li>
</ol>
</li>
<li>
Item 2
<ol>
<li>Subitem 1</li>
<li>Subitem 2</li>
<li>Subitem 3</li>
<li>Subitem 4</li>
<li>Subitem 5</li>
</ol>
</li>
</ol>
有没有使用JavaScript或jQuery的解决方案?
答案 0 :(得分:7)
您可以使用CSS执行此操作:
OL { counter-reset: item }
LI { display: block }
LI:before { content: counter(item) ". - "; counter-increment: item }
LI LI:before { content: counters(item, ".") " - "; counter-increment: item }
但它需要支持counter
and counters
。
编辑这是一个类似于dcneiner的jQuery方法,但没有深度限制:
function foo($ol, counters) {
counters = counters || [];
$ol.each(function(i) {
var $this = $(this);
$this.children("li").each(function(i) {
var $this = $(this);
$this.prepend(counters.concat([i+1]).join(".") + " ");
$this.children("ol").each(function(j) {
foo($(this), counters.concat([i+1]));
});
});
});
}
foo($("ol:not(li > ol)"));
答案 1 :(得分:7)
如果你想用jQuery进行跨浏览:
$("ol#list ol").each(function(i, el){
$(this).children().each(function(ci,cel){
$(this).prepend('<span class="pseudo-num">' + [i + 1, ci + 1].join('.') + ' </span>');
});
}).addClass('pseudo-processed');
在你的CSS中:
ol .pseudo-num { display: none }
ol.pseudo-processed { list-style: none; padding-left: 0 }
ol.pseudo-processed .pseudo-num { display: inline; font-weight: bold }
这仅适用于一个级别。您可以更改代码以创建多个级别的递归函数。
这是为逐步增强您的页面而设置的。如果没有Javascript,它将回退到正常的嵌套编号。
更新:感谢 @Gumbo 工作,我将此代码重新编写为递归插件。它将使用与我之前的示例相同的CSS,但现在它是一个“完全成熟”的jQuery插件,支持任何深度:
$.fn.outline = function(options, counters){
var options = $.extend({}, $.fn.outline.defaults, options),
counters = counters || [];
this.each(function(){
$(this).children('li').each(function(i){
var ct = counters.concat([i + 1]);
if(counters.length){
$('<span></span>')
.addClass(options.numberClass)
.text(ct.join('.') + ' ')
.prependTo(this);
}
$(this).children('ol').outline(options, ct);
})
});
if(!counters.length) this.addClass(options.processedClass)
}
$.fn.outline.defaults = {
numberClass: 'pseudo-num',
processedClass: 'pseudo-processed'
}
然后,您可以在特定的#id
上调用它:
$("#list").outline();
或者使用@ Gumbo的漂亮选择器将其应用于一个页面上的所有ol
标记:
$("ol:not(li > ol)").outline();
您可以全局覆盖默认值,也可以单独覆盖默认值:
$.fn.outline.defaults.processedClass = 'ol-ready';
// or
$("#list").outline({processedClass: 'ol-ready'});
答案 2 :(得分:4)
既不是js也不是jquery而是CSS:
<STYLE type="text/css">
UL, OL { counter-reset: item }
LI { display: block }
LI:before { content: counters(item, "."); counter-increment: item }
</STYLE>