我正在使用制表符和角度UI路由来浏览这些标签。单击选项卡时,其URL会更改,但选项卡不会切换。
我有3个标签。前两个选项卡按预期工作。但即使URL更改,最后一个选项卡也不会切换。
这是我的代码。
如果您需要更多信息,请与我们联系。
答案 0 :(得分:0)
您似乎在特定ui-sref
上设置了k状态活动类,因为您使用的是ui-sref-active="k-state-active"
,您可以在所有li
上使用class
元素代替第一个<!DOCTYPE html>
<html>
<head>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.5.3/p5.min.js"></script>
<script src="main.js"></script>
<script src="isKeyPressed.js"></script>
<script src="blocks.js"></script>
<script src="player.js"></script>
<script>
player.motion = function() {
if(isKeyPressed('w')) {
this.velocity.add(0,-5);
}
if(isKeyPressed('s')) {
this.velocity.add(0,5);
}
if(isKeyPressed('a')) {
this.velocity.add(-5,0);
}
if(isKeyPressed('d')) {
this.velocity.add(5,0);
}
}
</script>
</head>
<body>
</body>
</html>
,ui-sref-active状态将应用this