gpt4 book ai didi

jquery - UL 中列表项的随机(子弹)图像?

转载 作者:行者123 更新时间:2023-11-28 10:23:25 26 4
gpt4 key购买 nike

我有一个从 wordpress 帖子生成的 ul li 边栏。客户为每个 LI 的元素符号使用了不同的图像。与其手动添加单独的元素符号,不如从一组(比如说 10 个)选项中进行选择?

正在考虑 Jquery 函数?有人做过吗?

谢谢

最佳答案

可能像下面这样:

<style type="text/css">
/* Add the styles here, incrementing the number of each one as you go (then change
the 3 in the jQuery addClass method so it corresponds with the number of options
available */
li.bullet-0 { list-style-type: circle; }
li.bullet-1 { list-style-type: disc; }
li.bullet-2 { list-style-type: square; }
</style>
<Script type="text/javascript">
$(document).ready(){
$('ul > li').each(function(i,e){
$(this).addClass('bullet-'+(i%3)); // change 3 to number of styles that are above.
});
});
</script>

显示应用的 jsFiddle 链接:http://www.jsfiddle.net/bradchristie/yxZ4m/

关于jquery - UL 中列表项的随机(子弹)图像?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4441132/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com