AngularJS – Tab 介紹篇

為了方便文章閱讀,本篇將Tab翻譯成頁籤

這個案例的複雜度會比較前面高一些,因為它不僅僅是使用我們一直提到的AngularJS,為了要製作頁面上面的一些互動效果,還加入了Bootstrape這個通常被用來當RWD的框架,不過也僅僅是套用了幾個類別,所以大家也不用太擔心,接下來我們先看一下這個案例最後希望要達成的效果頁面

在看過了目標頁面後,我們先來了解一下需要怎麼樣架構我們的HTML,首先是CSS和Javascript的引入,分別是AngularJS、jQuery、Bootstrap CSS以及Javascript:

<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.3.2/angular.min.js"></script>
<script src="https://code.jquery.com/jquery.min.js"></script>
<link href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap.min.css" rel="stylesheet" type="text/css" />
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/js/bootstrap.min.js"></script>

在HTML文件中,必須有項目清單標籤ul、li,而在ul標籤中需套用nav nav-pills這兩個css類別,這兩個類別是由Bootstrape的css所提供的,li標籤是包覆著超連結的a標籤,下圖案例是希望可以產生三個頁籤。

AngularJS Part5 Slide1
AngularJS Part5 Slide1

在a標籤中加入ng-click=”tab = 1″、ng-click=”tab = 2″、ng-click=”tab = 3″去設定當使用者按下連結後tab變數會隨著變化,另外為了方便觀察是否成功,在頁面上利用表達式將tab變數顯示出來。

AngularJS Part5 Slide1
AngularJS Part5 Slide2

若一切順利,在我們按下不同的頁籤連結時,畫面上應該會有數字上面的變化。

AngularJS Part5 Slide3
AngularJS Part5 Slide3
AngularJS Part5 Slide4
AngularJS Part5 Slide4

接下來開始製作點選頁籤後的內容頁面,同樣的內容頁面也應該有三個才對,在HTML中產生三個div,其中套用Bootstrape所提供的CSS panel類別,div的內容部分可依照需求置入。

AngularJS Part5 Slide5
AngularJS Part5 Slide5

在div中利用ng-show去判斷tab變數的值來切換顯示。

AngularJS Part5 Slide6
AngularJS Part5 Slide6

完成後,在我們點選不同的連結時,內容的部分也應該會隨著變動。

AngularJS Part5 Slide7
AngularJS Part5 Slide7

接下來我們在section標籤中設定ng-init=”tab=1″的屬性來決定tab變數的初始值。

AngularJS Part5 Slide8
AngularJS Part5 Slide8

接下來在li內新增ng-class的屬性,依tab變數的值來切換active的CSS屬性(該屬性由Bootstrape提供樣式),其中三個連續的等號是判斷該變數與值完全相同的意思。

AngularJS Part5 Slide9
AngularJS Part5 Slide9

這個動作的目的是希望當網友點選之後,可以如下圖所示,清楚的標示目前頁面上所顯示的是第幾個項目。

AngularJS Part5 Slide10
AngularJS Part5 Slide10

到目前為止,大概就完成了我們希望呈現的頁籤效果,大家可以透過JS Bin來測試看看到目前為止的程式碼。

<!DOCTYPE html>
<html ng-app>
<head>
<meta name="description" content="AngularJS Tabs Example 1">
<script src="//ajax.googleapis.com/ajax/libs/angularjs/1.3.2/angular.min.js"></script>
<script src="//code.jquery.com/jquery.min.js"></script>
<link href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap.min.css" rel="stylesheet" type="text/css" />
<script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.2/js/bootstrap.min.js"></script>
  <meta charset="utf-8">
  <title>AngularJS Tabs Example 1</title>
</head>
<body>
  <section ng-init="tab=1">
    
    <ul class="nav nav-pills">
      <li ng-class="{ active: tab===1 }">
        <a href="" ng-click="tab=1">滑鼠墊</a>
      </li>
      <li ng-class="{ active: tab===2 }">
        <a href="" ng-click="tab=2">馬克杯</a>
      </li>
      <li ng-class="{ active: tab===3 }">
        <a href="" ng-click="tab=3">杯墊</a>
      </li>
    </ul>
    
    <div class="panel" ng-show="tab===1">
      <h4>馬老師雲端研究室 滑鼠墊</h4>
      <p>產品介紹...</p>
    </div>
    <div class="panel" ng-show="tab===2">
      <h4>馬老師雲端研究室 馬克杯</h4>
      <p>產品介紹...</p>
    </div>
    <div class="panel" ng-show="tab===3">
      <h4>馬老師雲端研究室 杯墊</h4>
      <p>產品介紹...</p>
    </div>
  
  </section>
</body>
</html>

在看完了上面的案例之後,我們可以觀察到程式邏輯判斷的部分都是直接撰寫在HTML頁面上,那如果我們要把邏輯判斷的部分從HTML拆開寫到Javascript檔又應該要如何處理呢?首先,不用說的當然是必須要有應用程式的建立以及控制器囉!下圖中我們開始新增控制器,並且在section標籤中,輸入ng-controller=”panelController as panel”的屬性,相信在看了前幾篇教學的同學們對於這樣的項目是再熟悉不過了!接下來在控制器中,決定tab變數的初始值,就可以把原來的ng-init屬性刪除了。

AngularJS Part5 Slide11
AngularJS Part5 Slide11

在ng-click後去執行控制器中的selectTab函數,並且針對該函數帶入不同的值,利用帶入的值來改變tab變數值。

AngularJS Part5 Slide12
AngularJS Part5 Slide12

在ng-click後去執行控制器中的isSelected函數,也帶出不同的值給函數,讓函數可以回傳tab===1或2、3這樣的內容給ng-show使用。

AngularJS Part5 Slide13
AngularJS Part5 Slide13

這樣一來我們邏輯判斷的部分就會和網頁內容有所區隔,大家也可以透過JS Bin來測試這樣的程式結構。

<!DOCTYPE html>
<html ng-app="store">
<head>
<meta name="description" content="AngularJS Tabs Example 2">
<script src="//ajax.googleapis.com/ajax/libs/angularjs/1.3.2/angular.min.js"></script>
<script src="//code.jquery.com/jquery.min.js"></script>
<link href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap.min.css" rel="stylesheet" type="text/css" />
<script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.2/js/bootstrap.min.js"></script>
  <meta charset="utf-8">
  <title>AngularJS Tabs Example 2</title>
</head>
<body>
  <section ng-controller="PanelController as panel">
    <ul class="nav nav-pills">
      <li ng-class="{ active: panel.isSelected(1) }">
        <a href="" ng-click="panel.selectTab(1)">滑鼠墊</a>
      </li>
      <li ng-class="{ active: panel.isSelected(2) }">
        <a href="" ng-click="panel.selectTab(2)">馬克杯</a>
      </li>
      <li ng-class="{ active: panel.isSelected(3) }">
        <a href="" ng-click="panel.selectTab(3)">杯墊</a>
      </li>
    </ul>
    <div class="panel" ng-show="panel.isSelected(1)">
      <h4>馬老師雲端研究室 滑鼠墊</h4>
      <p>產品介紹...</p>
    </div>
    <div class="panel" ng-show="panel.isSelected(2)">
      <h4>馬老師雲端研究室 馬克杯</h4>
      <p>產品介紹...</p>
    </div>
    <div class="panel" ng-show="panel.isSelected(3)">
      <h4>馬老師雲端研究室 杯墊</h4>
      <p>產品介紹...</p>
    </div>
  </section>
</body>
</html>
(function(){
  var app = angular.module('store', []);
  
  app.controller('PanelController', function(){
    this.tab = 1;
    
    this.selectTab = function(setTab){
      this.tab = setTab;
    };

    this.isSelected = function(checkTab){
      return this.tab === checkTab;
    };
  });
  
})();

You may also like...

61,735 Responses

  1. DavidCooth表示:

    https://slot88.company/# Bermain slot bisa menjadi pengalaman sosial

  2. Williecrady表示:

    Banyak pemain mencari mesin dengan RTP tinggi http://garuda888.top/# п»їKasino di Indonesia sangat populer di kalangan wisatawan

  3. ThomasThype表示:

    Mesin slot dapat dimainkan dalam berbagai bahasa: slotdemo – slot demo gratis

  4. DouglasAssow表示:

    A brief history of sunglasses, from Ancient Rome to Hollywood
    kraken shop

    Sunglasses, or dark glasses, have always guarded against strong sunlight, but is there more to “shades” than we think?

    The pupils of our eyes are delicate and react immediately to strong lights. Protecting them against light — even the brilliance reflected off snow — is important for everyone. Himalayan mountaineers wear goggles for this exact purpose.

    Protection is partly the function of sunglasses. But dark or colored lens glasses have become fashion accessories and personal signature items. Think of the vast and famous collector of sunglasses Elton John, with his pink lensed heart-shaped extravaganzas and many others.

    When did this interest in protecting the eyes begin, and at what point did dark glasses become a social statement as well as physical protection?
    The Roman Emperor Nero is reported as holding polished gemstones to his eyes for sun protection as he watched fighting gladiators.

    We know Canadian far north Copper Inuit and Alaskan Yupik wore snow goggles of many kinds made of antlers or whalebone and with tiny horizontal slits. Wearers looked through these and they were protected against the snow’s brilliant light when hunting. At the same time the very narrow eye holes helped them to focus on their prey.

    In 12th-century China, judges wore sunglasses with smoked quartz lenses to hide their facial expressions — perhaps to retain their dignity or not convey emotions.

  5. Williecrady表示:

    Permainan slot mudah dipahami dan menyenangkan http://preman69.tech/# Pemain bisa menikmati slot dari kenyamanan rumah

  6. Aaronbus表示:

    BonaSlot BonaSlot Banyak pemain menikmati jackpot harian di slot

  7. ThomasThype表示:

    Mesin slot menawarkan pengalaman bermain yang cepat: garuda888 – garuda888

  8. Williecrady表示:

    Mesin slot dapat dimainkan dalam berbagai bahasa http://slot88.company/# Pemain sering berbagi tips untuk menang

  9. DavidCooth表示:

    https://slotdemo.auction/# Banyak pemain berusaha untuk mendapatkan jackpot

  10. Williecrady表示:

    Kasino memiliki suasana yang energik dan menyenangkan https://slot88.company/# Banyak pemain berusaha untuk mendapatkan jackpot

  11. DavidCooth表示:

    https://preman69.tech/# Pemain sering mencoba berbagai jenis slot

  12. Aaronbus表示:

    garuda888 slot garuda888 slot Permainan slot mudah dipahami dan menyenangkan

  13. ThomasThype表示:

    Slot modern memiliki grafik yang mengesankan: slot demo pg gratis – slotdemo

  14. DavidCooth表示:

    http://bonaslot.site/# Keseruan bermain slot selalu menggoda para pemain

  15. Shawnmency表示:

    Airbus exploring double-level airplane seat design
    гей порно член

    If you’ve seen images of the infamous double-level airplane seat concept and thought “that’s never going to happen” — maybe think again.

    Aviation start-up Chaise Longue, the brains behind the controversial dual-level seat, announced today it’s “exploring some early stage concepts” with aviation giant Airbus.

    This collaboration with an aircraft manufacturing heavyweight is a significant step in this seat design’s journey from college student project to potential in-air reality.

    Designer and Chaise Longue CEO Alejandro Nunez Vicente tells CNN Travel he’s thankful Airbus sees “the true potential of two-level seating.”

    An Airbus representative confirmed to CNN Travel that “Chaise Longue is exploring some early stage concepts with Airbus on two-level seating solutions for Airbus commercial aircraft.”

    The representative added that “given the nature of this early phase level,” Airbus preferred “not to further comment at this stage.”
    The crux of Nunez Vicente’s Chaise Longue seat design is the removal of the overhead cabin to allow two levels of seats in a single aircraft cabin.

    The idea is that travelers would have the option of booking the top row or the bottom row — and while the lower level might look less-than-appealing in photos, bottom passengers would be able to stretch out their legs and enjoy extra leg room. The top level is also designed to give “larger recline angles” and “leg-stretching possibility” than your average economy airplane seat, says Nunez Vicente.

    Nunez Vicente initially developed the design for economy cabins before last year premiering a business class/first class iteration.

    CNN Travel tested out early prototypes of both concepts and concluded that while the lower level has definite claustrophobia potential, the increased leg room could cancel out the potential cabin fever for some passengers.

  16. DannyUnded表示:

    How Nigeria’s biggest city became the world’s hottest winter party destination
    casino bonus

    It’s a world of endless parties and sleepless nights. A relentless celebration that turns West Africa – and especially Nigeria’s largest city, Lagos – into one of the hottest destinations on the continent, if not the planet, right in the middle of winter.

    Detty December is a magical time between December and early January when diaspora communities and tourists flock to Ghana, Nigeria and South Africa for an unforgettable experience filled with flavourful food, soulful African music and sunshine.

    Beach parties, festivals and top-tier performances fuel the energy, while fashion takes center stage, with everyone dressing to impress.

    Nearly two-thirds of Nigeria’s population is under 25, according to the United Nations Population Fund, making this one of the world’s youngest countries.

    Internationally renowned Afrobeats performers and foreign artists make surprise appearances. DJs take to the streets, blasting powerful beats from consoles mounted atop bright yellow minibuses.

    At times it’s all-consuming. Good luck getting hair salon appointments, affordable air tickets or navigating Lagos’ already notorious traffic when the party crowds are in town.

    Detty December (“detty” is a playful corruption of “dirty”) is a triumphant celebration of culture, music and good vibes that has evolved in recent years during the traditional holidays influx of diaspora returnees, which heightened in 2018 when Ghana ran a launched a successful “Year of Return” campaign actively encouraging people to visit their ancestral homelands.

    It’s gathered pace over the past five years, gaining an international reputation, as IJGBs (“I Just Got Backs”) and their friends arrive in batches, eager to unwind and blow off steam after the fast-paced, hard-working year they’ve had overseas.

    For many in the vast Nigerian diaspora, it is a deeply personal homecoming, a chance to reconnect with their heritage, traditions and families while immersing themselves in the lively energy of Nigerian life.

  17. JamesDeesk表示:

    UTLH: The Token That Will Help You EarnLooking for a reliable cryptocurrency with real utility and strong prospects? The UTLH token is an excellent choice! In a world where new coins appear every day, UTLH stands out for its value, clarity, and reliability.Why I Like UTLHLimited Supply – High ValueOnly 957,315 UTLH tokens exist. This means their supply is limited, and their value can grow over time. Unlike other cryptocurrencies, no additional coins can be minted, so your investments are protected from devaluation.Real UtilityUTLH is not just numbers on a screen. It can be used to access financial assistance, loans, or to participate in a closed entrepreneurial club.Transparency and ReliabilityThe token’s code (0x815d5d6a1ee9cc25349769fd197dc739733b1485) is open for everyone to see, and Binance Smart Chain (BSC) technology ensures fast and secure transactions.Profitable InvestmentYou can earn passive income—24% annually! Just 1 UTLH is enough to start earning 2% monthly and get your investment back with profit after a year.Large CommunityOver 10,930 people already hold UTLH, and the club has 150,000 members. This means the token is popular and in demand.The Future of UTLHExperts believe the price of UTLH could increase by 2x to 50x within 6–36 months. The limited supply and growing interest make UTLH a promising investment.SecurityThe project is open and honest, with no risk of fraud. Everything is transparent, and blockchain technology guarantees the safety of your funds.Conclusion: Why Choose UTLHUTLH is not just a cryptocurrency but a useful tool for smart investing. Its reliability, simplicity, and attractive conditions make it an excellent choice for those looking to earn.Don’t miss the chance to join the community and start earning with UTLH today!The UTLH token is not just a short-term investment opportunity, but a long-term strategy for those looking to diversify their portfolios. Its limited supply ensures that as demand grows, the value of each token will increase. Additionally, the UTLH ecosystem offers tangible benefits such as access to credit and financial services that are often unavailable through traditional methods. Such functionality adds real value to the token, making it much more than a speculative asset.The transparency of the project, supported by open source and blockchain technology, ensures that all transactions are secure and verifiable. Binance Smart Chain’s fast processing time and low fees make it easy for users to interact with the token, and its growing community further strengthens its credibility.

  18. Williecrady表示:

    Pemain bisa menikmati slot dari kenyamanan rumah http://preman69.tech/# Beberapa kasino memiliki area khusus untuk slot

  19. DavidCooth表示:

    http://preman69.tech/# Bermain slot bisa menjadi pengalaman sosial

  20. DavidCooth表示:

    https://garuda888.top/# Slot menawarkan berbagai jenis permainan bonus

  21. ThomasThype表示:

    Banyak pemain berusaha untuk mendapatkan jackpot: slot demo – slot demo

  22. Aaronbus表示:

    slot88 slot88 Permainan slot mudah dipahami dan menyenangkan

  23. Williecrady表示:

    Slot memberikan kesempatan untuk menang besar https://garuda888.top/# Banyak pemain berusaha untuk mendapatkan jackpot

  24. Williecrady表示:

    Slot dengan grafis 3D sangat mengesankan http://garuda888.top/# Kasino memastikan keamanan para pemain dengan baik

  25. DavidCooth表示:

    http://slotdemo.auction/# Permainan slot bisa dimainkan dengan berbagai taruhan

  26. nice article ave a look at my site “https://www.newsbreak.com/crypto-space-hub-313321940/3799652652916-top-crypto-investments-in-2025-bitcoin-ai-projects-tokenized-assets”

  27. ThomasThype表示:

    Slot klasik tetap menjadi favorit banyak orang: preman69 slot – preman69

  28. Williecrady表示:

    Kasino sering memberikan hadiah untuk pemain setia https://slotdemo.auction/# Slot dengan tema budaya lokal menarik perhatian

發佈回覆給「Sushi Swap App」的留言 取消回覆

發佈留言必須填寫的電子郵件地址不會公開。