自动创建下拉菜单,链接到长列表开头的列表项
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了自动创建下拉菜单,链接到长列表开头的列表项相关的知识,希望对你有一定的参考价值。
The name of the link should be in strong (or you may change this in the script)
$('#publications').prev(':header').css('float','left'); $('#publications').before('<select id="toc" class="jumpmenu"></select>'); $("#publications li strong").each(function(i) { $(this).attr("id", i+1); $("#toc").append("<option value='#"+(i+1)+"'>"+$(this).text()+"</option>"); }); $(".jumpmenu").change(function() { window.location.href = $(this).val(); });
以上是关于自动创建下拉菜单,链接到长列表开头的列表项的主要内容,如果未能解决你的问题,请参考以下文章
使用 jQuery / JavaScript (ASP.NET) 将下拉链接的父列表项设置为活动状态