<span id="mktg5"></span>

<i id="mktg5"><meter id="mktg5"></meter></i>

        <label id="mktg5"><meter id="mktg5"></meter></label>
        最新文章專題視頻專題問(wèn)答1問(wèn)答10問(wèn)答100問(wèn)答1000問(wèn)答2000關(guān)鍵字專題1關(guān)鍵字專題50關(guān)鍵字專題500關(guān)鍵字專題1500TAG最新視頻文章推薦1 推薦3 推薦5 推薦7 推薦9 推薦11 推薦13 推薦15 推薦17 推薦19 推薦21 推薦23 推薦25 推薦27 推薦29 推薦31 推薦33 推薦35 推薦37視頻文章20視頻文章30視頻文章40視頻文章50視頻文章60 視頻文章70視頻文章80視頻文章90視頻文章100視頻文章120視頻文章140 視頻2關(guān)鍵字專題關(guān)鍵字專題tag2tag3文章專題文章專題2文章索引1文章索引2文章索引3文章索引4文章索引5123456789101112131415文章專題3
        問(wèn)答文章1 問(wèn)答文章501 問(wèn)答文章1001 問(wèn)答文章1501 問(wèn)答文章2001 問(wèn)答文章2501 問(wèn)答文章3001 問(wèn)答文章3501 問(wèn)答文章4001 問(wèn)答文章4501 問(wèn)答文章5001 問(wèn)答文章5501 問(wèn)答文章6001 問(wèn)答文章6501 問(wèn)答文章7001 問(wèn)答文章7501 問(wèn)答文章8001 問(wèn)答文章8501 問(wèn)答文章9001 問(wèn)答文章9501
        當(dāng)前位置: 首頁(yè) - 科技 - 知識(shí)百科 - 正文

        vue實(shí)現(xiàn)留言板todolist功能

        來(lái)源:懂視網(wǎng) 責(zé)編:小采 時(shí)間:2020-11-27 22:32:46
        文檔

        vue實(shí)現(xiàn)留言板todolist功能

        vue實(shí)現(xiàn)留言板todolist功能:通過(guò)前面兩篇文章的的學(xué)習(xí),我們掌握了vue的基本用法. 本文,就利用這些基礎(chǔ)知識(shí)來(lái)實(shí)現(xiàn)一個(gè)留言板, 老外把他稱之為todolist. 第一步、使用bootstrap做好布局 <!DOCTYPE html> <html> <head lang=en> <
        推薦度:
        導(dǎo)讀vue實(shí)現(xiàn)留言板todolist功能:通過(guò)前面兩篇文章的的學(xué)習(xí),我們掌握了vue的基本用法. 本文,就利用這些基礎(chǔ)知識(shí)來(lái)實(shí)現(xiàn)一個(gè)留言板, 老外把他稱之為todolist. 第一步、使用bootstrap做好布局 <!DOCTYPE html> <html> <head lang=en> <

        通過(guò)前面兩篇文章的的學(xué)習(xí),我們掌握了vue的基本用法. 本文,就利用這些基礎(chǔ)知識(shí)來(lái)實(shí)現(xiàn)一個(gè)留言板, 老外把他稱之為todolist.

        第一步、使用bootstrap做好布局

        <!DOCTYPE html>
        <html>
        <head lang="en">
         <meta charset="UTF-8">
         <title></title>
         <link rel="stylesheet" href="lib/bootstrap.min.css"/>
         <script src="lib/jquery-1.7.2.js"></script>
         <script src="lib/bootstrap.js"></script>
        </head>
        <body>
        <div class="container">
         <form role="form">
         <div class="form-group">
         <label for="username">用戶名:</label>
         <input type="text" id="username" class="form-control" placeholder="輸入用戶名">
         </div>
         <div class="form-group">
         <label for="age">年 齡:</label>
         <input type="text" id="age" class="form-control" placeholder="輸入年齡">
         </div>
         <div class="form-group">
         <input type="button" value="添加" class="btn btn-primary">
         <input type="button" value="重置" class="btn btn-danger">
         </div>
         </form>
         <hr>
         <table class="table table-bordered table-hover">
         <caption class="h2 text-info">用戶信息表</caption>
         <tr class="text-danger">
         <th class="text-center">序號(hào)</th>
         <th class="text-center">名字</th>
         <th class="text-center">年齡</th>
         <th class="text-center">操作</th>
         </tr>
         <tr class="text-center">
         <td>1</td>
         <td>張三</td>
         <td>20</td>
         <td>
         <button class="btn btn-primary btn-sm">刪除</button>
         </td>
         </tr>
         <tr class="text-center">
         <td>2</td>
         <td>李四</td>
         <td>22</td>
         <td>
         <button class="btn btn-primary btn-sm">刪除</button>
         </td>
         </tr>
         <tr>
         <td colspan="4" class="text-right">
         <button class="btn btn-danger btn-sm">刪除全部</button>
         </td>
         </tr>
         <tr>
         <td colspan="4" class="text-center text-muted">
         <p>暫無(wú)數(shù)據(jù)....</p>
         </td>
         </tr>
         </table>
        </div>
        </body>
        </html>

        第二步、增加模態(tài)框,模態(tài)框默認(rèn)為隱藏的

        <!DOCTYPE html>
        <html>
        <head lang="en">
         <meta charset="UTF-8">
         <title></title>
         <link rel="stylesheet" href="lib/bootstrap.min.css"/>
         <script src="lib/jquery-1.7.2.js"></script>
         <script src="lib/bootstrap.js"></script>
        </head>
        <body>
        <div class="container">
         <form role="form">
         <div class="form-group">
         <label for="username">用戶名:</label>
         <input type="text" id="username" class="form-control" placeholder="輸入用戶名">
         </div>
         <div class="form-group">
         <label for="age">年 齡:</label>
         <input type="text" id="age" class="form-control" placeholder="輸入年齡">
         </div>
         <div class="form-group">
         <input type="button" value="添加" class="btn btn-primary">
         <input type="button" value="重置" class="btn btn-danger">
         </div>
         </form>
         <hr>
         <table class="table table-bordered table-hover">
         <caption class="h2 text-info">用戶信息表</caption>
         <tr class="text-danger">
         <th class="text-center">序號(hào)</th>
         <th class="text-center">名字</th>
         <th class="text-center">年齡</th>
         <th class="text-center">操作</th>
         </tr>
         <tr class="text-center">
         <td>1</td>
         <td>張三</td>
         <td>20</td>
         <td>
         <button class="btn btn-primary btn-sm" data-toggle="modal" data-target="#layer">刪除</button>
         </td>
         </tr>
         <tr class="text-center">
         <td>2</td>
         <td>李四</td>
         <td>22</td>
         <td>
         <button class="btn btn-primary btn-sm" data-toggle="modal" data-target="#layer">刪除</button>
         </td>
         </tr>
         <tr>
         <td colspan="4" class="text-right">
         <button class="btn btn-danger btn-sm">刪除全部</button>
         </td>
         </tr>
         <tr>
         <td colspan="4" class="text-center text-muted">
         <p>暫無(wú)數(shù)據(jù)....</p>
         </td>
         </tr>
         </table>
        
         <!--模態(tài)框 彈出框-->
         <div role="dialog" class="modal fade bs-example-modal-sm" id="layer">
         <div class="modal-dialog">
         <div class="modal-content">
         <div class="modal-header">
         <button type="button" class="close" data-dismiss="modal">
         <span>×</span>
         </button>
         <h4 class="modal-title">確認(rèn)刪除么?</h4>
         </div>
         <div class="modal-body text-right">
         <button data-dismiss="modal" class="btn btn-primary btn-sm">取消</button>
         <button data-dismiss="modal" class="btn btn-danger btn-sm">確認(rèn)</button>
         </div>
         </div>
         </div>
         </div>
        
        
        </div>
        </body>
        </html>
        

        第三步、定義userList用來(lái)保存用戶,userName保存用戶名, age保存用戶變量,  然后把userName和age 通過(guò) v-model指令綁定到對(duì)應(yīng)的輸入框,實(shí)現(xiàn)輸入框與變量中的數(shù)據(jù)雙向驅(qū)動(dòng),在表格的行中輸出userList

        <!DOCTYPE html>
        <html>
        <head lang="en">
         <meta charset="UTF-8">
         <title></title>
         <link rel="stylesheet" href="lib/bootstrap.min.css"/>
         <script src="lib/jquery-1.7.2.js"></script>
         <script src="lib/bootstrap.js"></script>
         <script src="../js/vue.js"></script>
         <script>
         window.onload = function () {
         var c = new Vue({
         el: '#box',
         data: {
         userList: [],
         userName : '',
         age : ''
         }
         });
         }
         </script>
        </head>
        <body>
        <div class="container" id="box">
         <form role="form">
         <div class="form-group">
         <label for="username">用戶名:</label>
         <input type="text" id="username" v-model="userName" class="form-control" placeholder="輸入用戶名">
         </div>
         <div class="form-group">
         <label for="age">年 齡:</label>
         <input type="text" id="age" v-model="age" class="form-control" placeholder="輸入年齡">
         </div>
         <div class="form-group">
         <input type="button" value="添加" class="btn btn-primary">
         <input type="button" value="重置" class="btn btn-danger">
         </div>
         </form>
         <hr>
         <table class="table table-bordered table-hover">
         <caption class="h2 text-info">用戶信息表</caption>
         <tr class="text-danger">
         <th class="text-center">序號(hào)</th>
         <th class="text-center">名字</th>
         <th class="text-center">年齡</th>
         <th class="text-center">操作</th>
         </tr>
         <tr class="text-center" v-for="value in userList">
         <td>{{$index+1}}</td>
         <td>{{value.name}}</td>
         <td>{{value.age}}</td>
         <td>
         <button class="btn btn-primary btn-sm" data-toggle="modal" data-target="#layer">刪除</button>
         </td>
         </tr>
         <tr>
         <td colspan="4" class="text-right">
         <button class="btn btn-danger btn-sm">刪除全部</button>
         </td>
         </tr>
         <tr>
         <td colspan="4" class="text-center text-muted">
         <p>暫無(wú)數(shù)據(jù)....</p>
         </td>
         </tr>
         </table>
        
         <!--模態(tài)框 彈出框-->
         <div role="dialog" class="modal fade bs-example-modal-sm" id="layer">
         <div class="modal-dialog">
         <div class="modal-content">
         <div class="modal-header">
         <button type="button" class="close" data-dismiss="modal">
         <span>×</span>
         </button>
         <h4 class="modal-title">確認(rèn)刪除么?</h4>
         </div>
         <div class="modal-body text-right">
         <button data-dismiss="modal" class="btn btn-primary btn-sm">取消</button>
         <button data-dismiss="modal" class="btn btn-danger btn-sm">確認(rèn)</button>
         </div>
         </div>
         </div>
         </div>
        </div>
        </body>
        </html>
        

        第四步、添加用戶,點(diǎn)擊添加按鈕,把輸入框中的數(shù)據(jù)作為一個(gè)對(duì)象 push 到數(shù)組userList,添加完之后,把userName, age清空,那么兩個(gè)輸入框的內(nèi)容就會(huì)被清空

        <!DOCTYPE html>
        <html>
        <head lang="en">
        <meta charset="UTF-8">
        <title></title>
        <link rel="stylesheet" href="lib/bootstrap.min.css"/>
        <script src="lib/jquery-1.7.2.js"></script>
        <script src="lib/bootstrap.js"></script>
        <script src="../js/vue.js"></script>
        <script>
        window.onload = function () {
        var c = new Vue({
        el: '#box',
        data: {
        userList: [],
        userName : '',
        age : ''
        }
        });
        }
        </script>
        </head>
        <body>
        <div class="container" id="box">
        <form role="form">
        <div class="form-group">
        <label for="username">用戶名:</label>
        <input type="text" id="username" v-model="userName" class="form-control" placeholder="輸入用戶名">
        </div>
        <div class="form-group">
        <label for="age">年 齡:</label>
        <input type="text" id="age" v-model="age" class="form-control" placeholder="輸入年齡">
        </div>
        <div class="form-group">
        <input type="button" value="添加" class="btn btn-primary">
        <input type="button" value="重置" class="btn btn-danger">
        </div>
        </form>
        <hr>
        <table class="table table-bordered table-hover">
        <caption class="h2 text-info">用戶信息表</caption>
        <tr class="text-danger">
        <th class="text-center">序號(hào)</th>
        <th class="text-center">名字</th>
        <th class="text-center">年齡</th>
        <th class="text-center">操作</th>
        </tr>
        <tr class="text-center" v-for="value in userList">
        <td>{{$index+1}}</td>
        <td>{{value.name}}</td>
        <td>{{value.age}}</td>
        <td>
        <button class="btn btn-primary btn-sm" data-toggle="modal" data-target="#layer">刪除</button>
        </td>
        </tr>
        <tr>
        <td colspan="4" class="text-right">
        <button class="btn btn-danger btn-sm">刪除全部</button>
        </td>
        </tr>
        <tr>
        <td colspan="4" class="text-center text-muted">
        <p>暫無(wú)數(shù)據(jù)....</p>
        </td>
        </tr>
        </table>
        
        <!--模態(tài)框 彈出框-->
        <div role="dialog" class="modal fade bs-example-modal-sm" id="layer">
        <div class="modal-dialog">
        <div class="modal-content">
        <div class="modal-header">
        <button type="button" class="close" data-dismiss="modal">
        <span>×</span>
        </button>
        <h4 class="modal-title">確認(rèn)刪除么?</h4>
        </div>
        <div class="modal-body text-right">
        <button data-dismiss="modal" class="btn btn-primary btn-sm">取消</button>
        <button data-dismiss="modal" class="btn btn-danger btn-sm">確認(rèn)</button>
        </div>
        </div>
        </div>
        </div>
        </div>
        </body>
        </html>
        

        第五步、結(jié)合數(shù)組的長(zhǎng)度與v-show指令,實(shí)現(xiàn)提示信息的顯示與隱藏

        <!DOCTYPE html>
        <html>
        <head lang="en">
         <meta charset="UTF-8">
         <title></title>
         <link rel="stylesheet" href="lib/bootstrap.min.css"/>
         <script src="lib/jquery-1.7.2.js"></script>
         <script src="lib/bootstrap.js"></script>
         <script src="../js/vue.js"></script>
         <script>
         window.onload = function () {
         var c = new Vue({
         el: '#box',
         data: {
         userList: [],
         userName : '',
         age : ''
         },
         methods : {
         addUser : function(){
         this.userList.push({
         name : this.userName,
         age : this.age
         });
        
         this.userName = ''; //添加完用戶之后,把輸入框的值清除
         this.age = '';
         }
         }
         });
         }
         </script>
        </head>
        <body>
        <div class="container" id="box">
         <form role="form">
         <div class="form-group">
         <label for="username">用戶名:</label>
         <input type="text" id="username" v-model="userName" class="form-control" placeholder="輸入用戶名">
         </div>
         <div class="form-group">
         <label for="age">年 齡:</label>
         <input type="text" id="age" v-model="age" class="form-control" placeholder="輸入年齡">
         </div>
         <div class="form-group">
         <input type="button" v-on:click="addUser();" value="添加" class="btn btn-primary">
         <input type="button" value="重置" class="btn btn-danger">
         </div>
         </form>
         <hr>
         <table class="table table-bordered table-hover">
         <caption class="h2 text-info">用戶信息表</caption>
         <tr class="text-danger">
         <th class="text-center">序號(hào)</th>
         <th class="text-center">名字</th>
         <th class="text-center">年齡</th>
         <th class="text-center">操作</th>
         </tr>
         <tr class="text-center" v-for="value in userList">
         <td>{{$index+1}}</td>
         <td>{{value.name}}</td>
         <td>{{value.age}}</td>
         <td>
         <button class="btn btn-primary btn-sm" data-toggle="modal" data-target="#layer">刪除</button>
         </td>
         </tr>
         <tr v-show="userList.length!=0">
         <td colspan="4" class="text-right">
         <button class="btn btn-danger btn-sm">刪除全部</button>
         </td>
         </tr>
         <tr v-show="userList.length==0">
         <td colspan="4" class="text-center text-muted">
         <p>暫無(wú)數(shù)據(jù)....</p>
         </td>
         </tr>
         </table>
        
         <!--模態(tài)框 彈出框-->
         <div role="dialog" class="modal fade bs-example-modal-sm" id="layer">
         <div class="modal-dialog">
         <div class="modal-content">
         <div class="modal-header">
         <button type="button" class="close" data-dismiss="modal">
         <span>×</span>
         </button>
         <h4 class="modal-title">確認(rèn)刪除么?</h4>
         </div>
         <div class="modal-body text-right">
         <button data-dismiss="modal" class="btn btn-primary btn-sm">取消</button>
         <button data-dismiss="modal" class="btn btn-danger btn-sm">確認(rèn)</button>
         </div>
         </div>
         </div>
         </div>
        </div>
        </body>
        </html>
        

        第六步、實(shí)現(xiàn)刪除某行數(shù)據(jù)

        <!DOCTYPE html>
        <html>
        <head lang="en">
         <meta charset="UTF-8">
         <title></title>
         <link rel="stylesheet" href="lib/bootstrap.min.css"/>
         <script src="lib/jquery-1.7.2.js"></script>
         <script src="lib/bootstrap.js"></script>
         <script src="../js/vue.js"></script>
         <script>
         window.onload = function () {
         var c = new Vue({
         el: '#box',
         data: {
         userList: [],
         userName : '',
         age : '',
         curIndex : -10
         },
         methods : {
         addUser : function(){
         this.userList.push({
         name : this.userName,
         age : this.age
         });
        
         this.userName = ''; //添加完用戶之后,把輸入框的值清除
         this.age = '';
         },
         deleteRow : function( n ){
         this.userList.splice( n, 1 );
         }
         }
         });
         }
         </script>
        </head>
        <body>
        <div class="container" id="box">
         <form role="form">
         <div class="form-group">
         <label for="username">用戶名:</label>
         <input type="text" id="username" v-model="userName" class="form-control" placeholder="輸入用戶名">
         </div>
         <div class="form-group">
         <label for="age">年 齡:</label>
         <input type="text" id="age" v-model="age" class="form-control" placeholder="輸入年齡">
         </div>
         <div class="form-group">
         <input type="button" v-on:click="addUser();" value="添加" class="btn btn-primary">
         <input type="button" value="重置" class="btn btn-danger">
         </div>
         </form>
         <hr>
         <table class="table table-bordered table-hover">
         <caption class="h2 text-info">用戶信息表</caption>
         <tr class="text-danger">
         <th class="text-center">序號(hào)</th>
         <th class="text-center">名字</th>
         <th class="text-center">年齡</th>
         <th class="text-center">操作</th>
         </tr>
         <tr class="text-center" v-for="value in userList">
         <td>{{$index+1}}</td>
         <td>{{value.name}}</td>
         <td>{{value.age}}</td>
         <td>
         <button class="btn btn-primary btn-sm" data-toggle="modal" data-target="#layer" v-on:click="curIndex=$index">刪除</button>
         </td>
         </tr>
         <tr v-show="userList.length!=0">
         <td colspan="4" class="text-right">
         <button class="btn btn-danger btn-sm">刪除全部</button>
         </td>
         </tr>
         <tr v-show="userList.length==0">
         <td colspan="4" class="text-center text-muted">
         <p>暫無(wú)數(shù)據(jù)....</p>
         </td>
         </tr>
         </table>
        
         <!--模態(tài)框 彈出框-->
         <div role="dialog" class="modal fade bs-example-modal-sm" id="layer">
         <div class="modal-dialog">
         <div class="modal-content">
         <div class="modal-header">
         <button type="button" class="close" data-dismiss="modal">
         <span>×</span>
         </button>
         <h4 class="modal-title">確認(rèn)刪除么?</h4>
         </div>
         <div class="modal-body text-right">
         <button data-dismiss="modal" class="btn btn-primary btn-sm">取消</button>
         <button data-dismiss="modal" class="btn btn-danger btn-sm" v-on:click="deleteRow(curIndex);">確認(rèn)</button>
         </div>
         </div>
         </div>
         </div>
        </div>
        </body>
        </html>
        

        第七步、實(shí)現(xiàn)刪除全部行

        <!DOCTYPE html>
        <html>
        <head lang="en">
         <meta charset="UTF-8">
         <title></title>
         <link rel="stylesheet" href="lib/bootstrap.min.css"/>
         <script src="lib/jquery-1.7.2.js"></script>
         <script src="lib/bootstrap.js"></script>
         <script src="../js/vue.js"></script>
         <script>
         window.onload = function () {
         var c = new Vue({
         el: '#box',
         data: {
         userList: [],
         userName: '',
         age: '',
         curIndex: -10
         },
         methods: {
         addUser: function () {
         this.userList.push({
         name: this.userName,
         age: this.age
         });
        
         this.userName = ''; //添加完用戶之后,把輸入框的值清除
         this.age = '';
         },
         deleteRow: function (n) {
         if (n == -1) { //當(dāng)n=-1的時(shí)候,清空數(shù)組,就是刪除全部
         this.userList = [];
         } else {
         this.userList.splice(n, 1);
         }
         }
         }
         });
         }
         </script>
        </head>
        <body>
        <div class="container" id="box">
         <form role="form">
         <div class="form-group">
         <label for="username">用戶名:</label>
         <input type="text" id="username" v-model="userName" class="form-control" placeholder="輸入用戶名">
         </div>
         <div class="form-group">
         <label for="age">年 齡:</label>
         <input type="text" id="age" v-model="age" class="form-control" placeholder="輸入年齡">
         </div>
         <div class="form-group">
         <input type="button" v-on:click="addUser();" value="添加" class="btn btn-primary">
         <input type="button" value="重置" class="btn btn-danger">
         </div>
         </form>
         <hr>
         <table class="table table-bordered table-hover">
         <caption class="h2 text-info">用戶信息表</caption>
         <tr class="text-danger">
         <th class="text-center">序號(hào)</th>
         <th class="text-center">名字</th>
         <th class="text-center">年齡</th>
         <th class="text-center">操作</th>
         </tr>
         <tr class="text-center" v-for="value in userList">
         <td>{{$index+1}}</td>
         <td>{{value.name}}</td>
         <td>{{value.age}}</td>
         <td>
         <button class="btn btn-primary btn-sm" data-toggle="modal" data-target="#layer"
         v-on:click="curIndex=$index">刪除
         </button>
         </td>
         </tr>
         <tr v-show="userList.length!=0">
         <td colspan="4" class="text-right">
         <button class="btn btn-danger btn-sm" v-on:click="curIndex=-1" data-toggle="modal" data-target="#layer">
         刪除全部
         </button>
         </td>
         </tr>
         <tr v-show="userList.length==0">
         <td colspan="4" class="text-center text-muted">
         <p>暫無(wú)數(shù)據(jù)....</p>
         </td>
         </tr>
         </table>
        
         <!--模態(tài)框 彈出框-->
         <div role="dialog" class="modal fade bs-example-modal-sm" id="layer">
         <div class="modal-dialog">
         <div class="modal-content">
         <div class="modal-header">
         <button type="button" class="close" data-dismiss="modal">
         <span>×</span>
         </button>
         <h4 class="modal-title">確認(rèn)刪除么?</h4>
         </div>
         <div class="modal-body text-right">
         <button data-dismiss="modal" class="btn btn-primary btn-sm">取消</button>
         <button data-dismiss="modal" class="btn btn-danger btn-sm" v-on:click="deleteRow(curIndex);">確認(rèn)
         </button>
         </div>
         </div>
         </div>
         </div>
        </div>
        </body>
        </html>
        

        聲明:本網(wǎng)頁(yè)內(nèi)容旨在傳播知識(shí),若有侵權(quán)等問(wèn)題請(qǐng)及時(shí)與本網(wǎng)聯(lián)系,我們將在第一時(shí)間刪除處理。TEL:177 7030 7066 E-MAIL:11247931@qq.com

        文檔

        vue實(shí)現(xiàn)留言板todolist功能

        vue實(shí)現(xiàn)留言板todolist功能:通過(guò)前面兩篇文章的的學(xué)習(xí),我們掌握了vue的基本用法. 本文,就利用這些基礎(chǔ)知識(shí)來(lái)實(shí)現(xiàn)一個(gè)留言板, 老外把他稱之為todolist. 第一步、使用bootstrap做好布局 <!DOCTYPE html> <html> <head lang=en> <
        推薦度:
        標(biāo)簽: 功能 VUE 留言板
        • 熱門(mén)焦點(diǎn)

        最新推薦

        猜你喜歡

        熱門(mén)推薦

        專題
        Top
        主站蜘蛛池模板: 欧洲美熟女乱又伦免费视频| 亚洲精品国产V片在线观看| 一本天堂ⅴ无码亚洲道久久| 日韩免费电影在线观看| 五月天国产成人AV免费观看| 亚洲成AV人片一区二区密柚| 最近免费中文字幕大全视频| 91在线视频免费观看| 亚洲91精品麻豆国产系列在线| 亚洲精品乱码久久久久久不卡| 久久午夜无码免费| 免费精品国产自产拍在线观看| 亚洲电影免费在线观看| 国产老女人精品免费视频| 久久狠狠躁免费观看| 无忧传媒视频免费观看入口| 亚洲永久中文字幕在线| 久久亚洲中文字幕精品一区| 日本阿v免费费视频完整版| 中国一级特黄的片子免费 | 国产精品四虎在线观看免费| 你懂的在线免费观看| 亚洲av无码专区国产不乱码| 亚洲网址在线观看| 国产成人综合亚洲AV第一页 | 免费va人成视频网站全| 在线观看免费人成视频色9| 国产在线国偷精品免费看| 亚洲色偷精品一区二区三区| 亚洲网址在线观看你懂的| 国产亚洲av片在线观看18女人| 好爽…又高潮了毛片免费看| 4399影视免费观看高清直播| 99re6在线精品免费观看| 免费看美女午夜大片| 亚洲欧好州第一的日产suv| 亚洲成A∨人片在线观看无码| 亚洲AV无码国产丝袜在线观看| 亚洲国产av无码精品| 四虎1515hm免费国产| 成人毛片免费在线观看|