vue.js 를 이용 하여 선 택 된 상 태 를 바 꾸 는 방법
html 부분의 코드:
<div data-role="page " class="page ">
<div class="center " id="app">
<div class="group ">
<ul>
<li v-for = "todo in todos ">
<div class="groupheader ">
<div class="Gheadertext ">{{todo.groupheader}}</div>
</div>
<div class = "groupbody ">
<ul class="list ">
<li v-for="cell in todo.groupbody" v-on:click="exchange($event)" class="groupcell">
<div class="celltext">
{{ cell.text }}
</div>
<img class="selectimg" src="img/select.png ">
</li>
</ul>
</div>
</li>
</ul>
</div>
</div>
</div>
데이터 코드:
var datas = {
todos :[
{
groupheader : 'MB3101',
groupbody:[
{ text: ' '},
{ text: ' ' },
{ text: ' ' },
{ text: ' ' },
{ text: ' ' },
{ text: ' ' },
{ text: ' ' },
{ text: ' ' },
{ text: ' ' },
]
},
{
groupheader : 'MB3102',
groupbody:[
{ text: ' ' },
{ text: ' ' },
{ text: ' ' },
{ text: ' ' },
{ text: ' ' },
{ text: ' ' },
{ text: ' ' },
{ text: ' ' },
{ text: ' ' },
]
},
{
groupheader : 'MB3103',
groupbody:[
{ text: ' ' },
{ text: ' ' },
{ text: ' ' },
{ text: ' ' },
{ text: ' ' },
{ text: ' ' },
{ text: ' ' },
{ text: ' ' },
{ text: ' ' },
]
}
]
}
js 부분의 코드:
new Vue({
el: '#app',
data:datas,
methods:{
exchange:function(event){
//
var a = event.target;
// <img>
var cellimg = a.getElementsByTagName("img")[0];
if(a.className == "groupcell") {
a.className = "selectcell";
cellimg.style.display = "block";
}
else if(a.className == "selectcell") {
a.className = "groupcell";
cellimg.style.display = "none";
}
}
}
})
효 과 는 그림 과 같다.이상 의 vue.js 를 이용 하여 선 택 된 상 태 를 바 꾸 는 방법 은 바로 편집장 이 여러분 에 게 공유 한 모든 내용 입 니 다.여러분 에 게 참고 가 되 고 많은 응원 을 바 랍 니 다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
[백견불여일타/Vue.js] 4장 - 입력 폼 데이터 가져오기v-model 데이터 입력 select 지난 장에서는 v-bind를 이용해서 HTML 태그 속성 값을 Vue로 다루는 법을 배웠습니다. 이번에는 사용자가 입력한 데이터를 Vue로 가져오는 법에 대해 다룹니다. 웹 페...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.