标签: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>
标签:set 双向 new add ntb initial html ret 绑定
原文地址:https://www.cnblogs.com/zzxuan/p/9713690.html