我有一个使用
JQuery的突出显示功能,它改变了点击的< li>的css.菜单中的元素.该函数还预先设置一对左括号<<作为伪箭头. 但是如何删除<<当我切换到下一个< li> ?
$(".sdv-nrml").click(function(){ //remove old highlighted li $(".sdv-nrml").css({'background' : '#ffcc66','color' : '#000000','text-align' : 'right'}); //assign new css and prepend arrow $(this).css({'background' : '#996600','color' : '#ffff66','text-align' : 'left'}); $(this).prepend("<< "); });
谢谢