91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

vue中怎么動態修改a標簽的樣式

發布時間:2021-07-09 14:44:02 來源:億速云 閱讀:175 作者:Leah 欄目:web開發

vue中怎么動態修改a標簽的樣式,相信很多沒有經驗的人對此束手無策,為此本文總結了問題出現的原因和解決方法,通過這篇文章希望你能解決這個問題。

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Document</title>
  <style type="text/css">
    .active{
      color: red;
    }
  </style>
</head>
<body>
  <div id="app">
    <button v-for='item in isp' @click='f1($index)' 
    :class="{'active': $index === isActive}">{{item}}</button>
  </div>

  <script type="text/javascript" src='vue.js'></script>
  <script>
    new Vue({
      el:'#app',
      data:{
        isActive:0,
        isp: ['BGP','中國電信','中國聯通','聯通電信雙線']
      },
      methods:{
        f1:function(index){
          this.isActive=index
        }
      }
    })
  </script>
</body>
</html>

像下面這樣:

vue中怎么動態修改a標簽的樣式

vue 動態修改a標簽的樣式.jpeg

下面是我項目中的代碼:

上面的代碼,作者用的是vue 1.0版本,下面我用的是2.0版本。

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Document</title>
  <style type="text/css">
    .red-link{
      color: red;
    }
  </style>
</head>
<body>
  <div id="app">
    <a href="javascript:void (0);" rel="external nofollow" class="box1-item" 
       v-for="(item, index) in menu"
       :class="{ 'red-link':index === isActive }" 
       v-on:click.stop.prevent='switchTab(index)'>
       {{ item }}
    </a>
  </div>

  <script type="text/javascript" src='vue.js'></script>
  <script>
    new Vue({
      el:'#app',
      data:{
        isActive:0,
        menu: ['推薦', '人物', '干貨', '行業', '融資','?教育','大數據'],
      },
      methods:{
        switchTab: function (index) {
          this.isActive = index;
        }
      }
    })
  </script>
</body>
</html>

看完上述內容,你們掌握vue中怎么動態修改a標簽的樣式的方法了嗎?如果還想學到更多技能或想了解更多相關內容,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

vue
AI

麟游县| 偃师市| 中西区| 云南省| 百色市| 延安市| 哈尔滨市| 若羌县| 岱山县| 清河县| 宝兴县| 安义县| 四会市| 波密县| 闻喜县| 长岭县| 商水县| 东安县| 叙永县| 天峨县| 永善县| 汨罗市| 崇仁县| 巴林右旗| 曲沃县| 泽库县| 梁平县| 贵定县| 鹿邑县| 壶关县| 南乐县| 黄大仙区| 达孜县| 右玉县| 平远县| 斗六市| 嘉祥县| 阳东县| 察雅县| 黔南| 富平县|