合规国际互联网加速 OSASE为企业客户提供高速稳定SD-WAN国际加速解决方案。 广告
``` <body> <input type="text" id="txt"> <p id="show"></p> <script> var obj = {} Object.defineProperty(obj, 'txt', { get: function() { return obj }, set: function(newValue) { document.getElementById('txt').value = newValue document.getElementById('show').innerHTML = newValue } }) document.addEventListener('keyup', function(e) { obj.txt = e.target.value }) console.log(obj) </script> </body> ```