我有六個不同的選項卡,並且點擊任何應該突出顯示的選項卡。但我的標籤失敗了,我不知道我哪裏出錯了。請讓我知道我的錯誤。Tabs active effect
腳本:
var app = angular.module('myapp',[]);
app.controller('tabCtrl',function() {
this.tab = 1;
this.setTab = function (tabId) {
this.tab = tabId;
};
this.isSet = function (tabId) {
return this.tab === tabId;
};
});
https://plnkr.co/edit/VH1iGHS17sM4CDanEQCY?p=preview
上面一個是我所創建的plunker。請查看它。
你的活塞正在工作,你只是錯過了活動標籤的樣式。 https://plnkr.co/edit/YCBrR7ES78l2vJRniZfq?p=preview – felixmosh
感謝您糾正我@felixmosh – SRK