jQuery:为无序列表编号
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jQuery:为无序列表编号相关的知识,希望对你有一定的参考价值。
Here’s a very simple script which adds numbers sequentially to an unordered list using jQuery
<script type="text/javascript" src="http://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.6.1.min.js"> </script> <script type="text/javascript"> $(function () { $('ul > li').each(function () { $(this).prepend("(" + ($(this).index() + 1) + ") "); }); }) </script>
以上是关于jQuery:为无序列表编号的主要内容,如果未能解决你的问题,请参考以下文章
如何根据每个无序列表中的列表项的数量在 Jquery 中隐藏按钮元素