首页 > 代码库 > vue-demo-tab切换
vue-demo-tab切换
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>Vue项目</title> <script src="https://code.jquery.com/jquery-3.1.1.min.js"></script> <script src="http://static.runoob.com/assets/vue/1.0.11/vue.min.js"></script> <style> #list{ winth:600px; height:50px; } #list li{ width:100px; height:50; margin:0 5px; background:red; float:left; list-style:none; text-align:center; line-height:50px; } div.content{ width:200px; height:200px; background:yellow; display:none; } </style> </head> <body> <div id="app_head"> <ul id=‘list‘> <li v-for="i in todos" v-on:click="fn1($index)" index=‘{{$index}}‘>{{i.text}}</li> </ul> <div class=‘content‘ v-for="i in todos">{{i.text}}</div> </div> <script> new Vue({ el:‘#app_head‘,//元素 data:{//数据 todos: [ { text: ‘首页‘ }, { text: ‘新闻资讯‘ }, { text: ‘产品展示‘ }, { text: ‘关于我们‘ }, { text: ‘联系我们‘ } ], fn1:function($index){ $(‘.content‘).css(‘display‘,‘none‘); $(‘.content‘).eq($index).css(‘display‘,‘block‘); } } }); $(‘.content‘).eq(0).css(‘display‘,‘block‘); </script> </body> </html>
vue-demo-tab切换
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。