javascript - vue項(xiàng)目中不能引入js來控制元素的class么?
問題描述
這是在引入的 js 中 console的情況
這是在 elements 中的情況
nav 也沒變化。這是怎么回事?
問題解答
回答1:沒看出了問題在哪里。問問題的時(shí)候先自己縷清思路,把問題點(diǎn)暴露出來。
回答問題
vue項(xiàng)目中不能引入js來控制元素的class么?
引入如jQuery之類的來操作dom是可以的
回答2:實(shí)際上,VueJS里處理此類問題非常方便,舉個(gè)例子。
在線查看 https://jsfiddle.net/wqbtt12c/
具體代碼如下:
<p id='app'> <p : @click='changeClass'>點(diǎn)我</p></p>
const classPool = [’red’, ’blue’, ’yellow’];new Vue({ el: ’#app’, data() { return {classStr: ’red’ } }, methods: { changeClass() {this.classStr = classPool[Math.ceil(Math.random()*3.0) - 1]; } }});
#app > p { width: 100px; height: 100px; line-height: 100px; text-align: center;}.red { background: red;}.blue { background: blue;}.yellow { background: yellow;}回答3:
vue 項(xiàng)目中必須在所要操作的元素 mounted 之后操作才能生效。暈死我了。
相關(guān)文章:
1. 我在導(dǎo)入模板資源時(shí)遇到無法顯示的問題,請老師解答下2. python - 調(diào)用api輸出頁面,會有標(biāo)簽出現(xiàn),請問如何清掉?3. thinkphp6使用驗(yàn)證器 信息如何輸出到前端頁面4. javascript - h5微信中怎么禁止橫屏5. PHPExcel表格導(dǎo)入數(shù)據(jù)庫怎么導(dǎo)入6. 運(yùn)行python程序時(shí)出現(xiàn)“應(yīng)用程序發(fā)生異常”的內(nèi)存錯(cuò)誤?7. macos - 無法source activate python278. python - sqlalchemy更新數(shù)據(jù)報(bào)錯(cuò)9. empty比isset更嚴(yán)格一點(diǎn)10. 預(yù)訂金和尾款分別支付

網(wǎng)公網(wǎng)安備