赞
踩
当网页内容比较多时,将内容全部显示一方面会显得冗余,另一方面并不是每个人都喜欢看所有内容。因此,为了提高用户体验,一些网站便将内容显示一部分,然后使用“显示更多”功能来对剩余内容进行显示与隐藏。下面是利用vue.js实现上述功能的demo。
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
</head>
<body>
<div id="app">
<div v-for="(item, key) in items" v-show="key<num">
{{item}}
</div>
<span @click="showMore">{{txt}}</span>
</div>
<script src="https://unpkg.com/vue"></script>
<script>
var app = new Vue({
el: '#app',
data(){
return{
items: [
'a',
'b',
'c',
'd',
'e',
'f'
],
isShow: true,
txt: '显示全部',
num: 3
}
},
methods: {
showMore(){
console.log('1', this.isShow);
this.isShow = !this.isShow;
console.log('2', this.isShow);
this.num = this.isShow? 3: this.items.length;
this.txt = this.isShow? '显示全部':'收起'
}
}
})
</script>
</body>
</html>
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。