码迷,mamicode.com
首页 > 其他好文 > 详细

vue双向数据绑定的简单实现

时间:2018-09-27 16:57:02      阅读:161      评论:0      收藏:0      [点我收藏+]

标签:set   双向   new   add   ntb   initial   html   ret   绑定   

vue双向数据绑定的简单实现

参考教程:链接

<!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">
     <input type="text" id="txt">
     <p id="show-txt"></p>
    </div>
    <script>
     var obj = {}
     Object.defineProperty(obj, txt, {
      get: function () {
       return obj
      },
      set: function (newValue) {
       document.getElementById(txt).value = newValue
       document.getElementById(show-txt).innerHTML = newValue
      }
     })
     document.addEventListener(keyup, function (e) {
      obj.txt = e.target.value
     })
    </script>
   </body>
</html>

 

vue双向数据绑定的简单实现

标签:set   双向   new   add   ntb   initial   html   ret   绑定   

原文地址:https://www.cnblogs.com/zzxuan/p/9713690.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!