中文亚洲精品无码_熟女乱子伦免费_人人超碰人人爱国产_亚洲熟妇女综合网

當(dāng)前位置: 首頁(yè) > news >正文

網(wǎng)站前端開(kāi)發(fā)框架/朋友圈產(chǎn)品推廣文案

網(wǎng)站前端開(kāi)發(fā)框架,朋友圈產(chǎn)品推廣文案,網(wǎng)站seo是什么意思,怎么將網(wǎng)站做成公司官網(wǎng)Class數(shù)據(jù)綁定 數(shù)據(jù)綁定的一個(gè)常見(jiàn)需求場(chǎng)景是操作CSS class列表,因?yàn)閏lass是attribute(屬性),我們可以和其他attribute一樣使用v-bind 將它們和動(dòng)態(tài)的字符串綁定。但是,在處理比較復(fù)雜的綁定時(shí),通過(guò)拼接生…

Class數(shù)據(jù)綁定

數(shù)據(jù)綁定的一個(gè)常見(jiàn)需求場(chǎng)景是操作CSS class列表,因?yàn)?code>class是attribute(屬性),我們可以和其他attribute一樣使用v-bind 將它們和動(dòng)態(tài)的字符串綁定。但是,在處理比較復(fù)雜的綁定時(shí),通過(guò)拼接生成字符串是麻煩且容易出錯(cuò)的。因此,Vue 專(zhuān)門(mén)為class 的v-bind 用法提供了特殊的功能增強(qiáng)。除了字符串外,表達(dá)式的值也可以是數(shù)組或?qū)ο蟆?/p>

綁定對(duì)象Object

<template>
<h3>class數(shù)據(jù)綁定</h3>
<hr>
<div :class="{active:isActive,'text-danger':hasError}">isActive</div>
<button @click="exchage">切換</button></template>
<script>export default {
data(){return{isActive:true,hasError:true}
},
methods:{exchage(){this.isActive=!this.isActive}
}
}</script>
<style scoped>
.active{color:red;
}
</style>

運(yùn)行結(jié)果
未切換前:
在這里插入圖片描述
切換后:
在這里插入圖片描述

多個(gè)對(duì)象綁定

<template>
<h3>class數(shù)據(jù)綁定</h3>
<hr>
<div :class="classObject">isActive</div>
<button @click="exchage">切換</button></template>
<script>export default {
data(){return{classObject:{active:true,'text-danger':true}}
},
methods:{exchage(){this.classObject.active = !this.classObject.active}
}
}</script>
<style scoped>
.active{color:rgb(132, 0, 255);font-size: large;
}
</style>

運(yùn)行結(jié)果:
切換前:
在這里插入圖片描述
切換后:
在這里插入圖片描述

數(shù)組綁定

<template><h3>class數(shù)據(jù)綁定</h3><hr><div :class="[activeClass,errorClass]">isActive</div></template><script>export default {data(){return{activeClass: 'active',errorClass:'text-danger'}},}</script><style scoped>.active{color:red;}</style>

運(yùn)行結(jié)果:
在這里插入圖片描述
如果你想在數(shù)組中渲染某個(gè)class,你可以使用三元表達(dá)式。

<template><h3>class數(shù)據(jù)綁定</h3><hr><div :class="[isActive ? 'active' : '']">isActive</div><button @click="exchage">切換</button></template><script>export default {data(){return{isActive:true,}},methods:{exchage(){this.isActive=!this.isActive}}}</script><style scoped>.active{color:red;}</style>

運(yùn)行結(jié)果:
在這里插入圖片描述
切換:
在這里插入圖片描述
數(shù)組和對(duì)象

<template><h3>class數(shù)據(jù)綁定</h3><hr><div :class="[{'active':isActive},errorClass]">isActive</div><button @click="exchage">切換</button></template><script>export default {data(){return{isActive:true,errorClass:"text-danger"}},methods:{exchage(){this.isActive=!this.isActive}}}</script><style scoped>.active{color:red;}</style>

運(yùn)行結(jié)果:
在這里插入圖片描述

溫馨提示:
數(shù)組和對(duì)象的嵌套過(guò)程中,只能數(shù)組嵌套對(duì)象,不能反其道而行。

http://www.risenshineclean.com/news/618.html

相關(guān)文章:

  • 網(wǎng)站網(wǎng)站制作服務(wù)/品牌宣傳如何做
  • 網(wǎng)站做跳轉(zhuǎn)對(duì)排名有影響嗎/網(wǎng)絡(luò)營(yíng)銷(xiāo)的基本內(nèi)容有哪些
  • 佛山駿域網(wǎng)站建設(shè)專(zhuān)家/怎么做一個(gè)網(wǎng)站
  • 網(wǎng)站建設(shè)和維護(hù)的職責(zé)/站長(zhǎng)工具亞洲高清
  • 攜程網(wǎng)站建設(shè)目的/seo網(wǎng)絡(luò)營(yíng)銷(xiāo)推廣公司
  • 焦溪翠冠梨做的網(wǎng)站/網(wǎng)站推廣平臺(tái)有哪些
  • 企業(yè)網(wǎng)站建設(shè)時(shí)間表/中國(guó)seo網(wǎng)站
  • 電熱設(shè)備網(wǎng)站建設(shè)/谷歌收錄提交入口
  • 做餅干的網(wǎng)站/網(wǎng)絡(luò)營(yíng)銷(xiāo)策劃方案范文
  • 企業(yè)網(wǎng)站的一般要素包括/長(zhǎng)沙網(wǎng)站開(kāi)發(fā)
  • wordpress好看的背景圖片/杭州優(yōu)化公司在線(xiàn)留言
  • 代加工廠(chǎng)找訂單的網(wǎng)站/網(wǎng)站營(yíng)銷(xiāo)軟文
  • 網(wǎng)站建設(shè)費(fèi)用還是網(wǎng)絡(luò)/好看的網(wǎng)站模板
  • 建站公司排名 中企動(dòng)力/seo推廣軟件
  • 國(guó)內(nèi)優(yōu)秀網(wǎng)站網(wǎng)頁(yè)設(shè)計(jì)/百度廣告競(jìng)價(jià)排名
  • 畢設(shè)做音樂(lè)網(wǎng)站/關(guān)鍵詞優(yōu)化一般收費(fèi)價(jià)格
  • thinkphp做網(wǎng)站好嗎/中國(guó)seo高手排行榜
  • 網(wǎng)站熱力圖怎么做/釣魚(yú)網(wǎng)站制作教程
  • 云南旅游網(wǎng)站建設(shè)/亞馬遜關(guān)鍵詞優(yōu)化軟件
  • 肅寧做網(wǎng)站/app開(kāi)發(fā)公司排名
  • 網(wǎng)站推廣方式措施/寧波網(wǎng)絡(luò)推廣優(yōu)化公司
  • asp網(wǎng)站500錯(cuò)誤iis7/百度搜索風(fēng)云榜游戲
  • vs2012網(wǎng)站開(kāi)發(fā)/怎么做一個(gè)自己的網(wǎng)站
  • 智誠(chéng)外包網(wǎng)/臺(tái)州專(zhuān)業(yè)關(guān)鍵詞優(yōu)化
  • 心理咨詢(xún)網(wǎng)站php后臺(tái)一般需要哪些模塊/百度快速提交入口
  • 如何做p2p網(wǎng)站/seo怎么做優(yōu)化排名
  • 做網(wǎng)站圖片尺寸/學(xué)校教育培訓(xùn)機(jī)構(gòu)
  • 網(wǎng)站常用字體大小/深圳網(wǎng)絡(luò)推廣市場(chǎng)
  • 織夢(mèng)淘寶客網(wǎng)站/活動(dòng)營(yíng)銷(xiāo)案例100例
  • php做網(wǎng)站最容易/b站推廣有用嗎