选项卡未切换,但该选项卡的URL正在更改

时间:2016-09-13 01:12:16

标签: angularjs kendo-ui angular-ui-router kendo-tabstrip

我正在使用制表符和角度UI路由来浏览这些标签。单击选项卡时,其URL会更改,但选项卡不会切换。

我有3个标签。前两个选项卡按预期工作。但即使URL更改,最后一个选项卡也不会切换。

这是我的代码。

Please click here

如果您需要更多信息,请与我们联系。

1 个答案:

答案 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