文章标题

2017-3-7

 Vue.js初探

留言板

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
    <script src="js/vue.js"></script>
</head>
<body>
<div id="box">
    <form>
        <label for="name">用户名</label><br>
        <input type="text" id="name" v-model="user"><br>
        <label for="content">留言内容</label><br>
        <textarea id="content" v-model="content"></textarea><br>
        <input type="button" value="提交" @click="add()">
    </form>

    <table>
        <tr>
            <th>序号</th>
            <th>用户名</th>
            <th>内容</th>
        </tr>
        <tr v-for="value in json">
            <td>{{$index+1}}</td>
            <td>{{value.user}}</td>
            <td >{{value.content}}</td>
            <td><button @click="remove($index)">删除</button></td>
        </tr>
    </table>

</div>

<script>
    new Vue({
        el:"#box",
        data:{
            json:[],
            user:"",
            content:""
        },
        methods:{
            add:function(){
                var obj={user:this.user,content:this.content};
                this.json.push(obj)
                this.user=""
                this.content=""
            },
            remove:function(index){
                this.json.splice(index,1)
            }
        }

    })
</script>
</body>
</html>

显示/隐藏 div

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>切换div</title>

</head>
<body>
<div id="box">
    <button v-on:click="show()">显示/消失</button>
    <div style="width: 300px;height: 300px;background-color: orangered;" v-show="a"></div>
</div>
<script src="js/vue.js"></script>
<script>
    new Vue({
        el:"#box",
        data:{
            a:true
        },
        methods:{
            show:function(){
                if(this.a==true){
                    this.a=false
                }else{
                    this.a=true
                }
            }
        }
    })
</script>
</body>
</html>
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值