我在 jsfiddle 中测试了下面的脚本,它工作正常,有人可以指导我如何修复它吗?这是我需要它工作的 url,右上角的向导样式菜单应该在单击时将每个项目设置为活动状态,然后在单击另一个菜单项时将其删除:http: //morxmedia.com/clients/temp /45p/index_vertical.html
这是我为此使用的代码:
<script type="text/javascript">
$('.wizard-steps div').click(function(e) {
e.preventDefault();
$('a').removeClass('active');
$(this).addClass('active');
});
</script>