我需要向每个导航项添加向上和向下箭头,如this pic中所示。我在哪里以及如何将这两种状态(无效箭头和活动箭头)编码到jQuery中。我想我需要将其编码到jQuery中?
答案 0 :(得分:1)
你可以用一些简单的CSS类来完成这个,因为a
在打开它们时会有不同的类:
toggler toggler-closed
和toggler toggler-opened
.toggler.toggler-opened {
/* a background image on the right side with arrow down? */
}
.toggler.toggler-closed {
/* a background image on the right side with arrow to the right? */
}
答案 1 :(得分:0)
这似乎相对简单,虽然我可能使用了一点点jQuery:
$(document).ready(
function(){
$('.toggler').each(function(){
$('<span></span>').appendTo($(this));
});
$('.toggler-closed > span').text('▶');
$('.toggler-opened > span').text('▼');
});
.toggler span {
float: right;
background-color: #eee;
border-radius: 0.2em;
display: inline-block;
width: 1em;
line-height: 1em;
}