Rumah > Artikel > hujung hadapan web > 前端之js双向数据绑定
本文我们将和大家分享前端之js双向数据绑定,希望对大家有帮助。
<html> <head> <title>textBind</title> </head> <body> <input type="text" name="infoInsert"> <p id="infoShow"></p> <script type="text/javascript"> var obj = { seeYou: 'Hello' }; Object.defineProperty(obj, 'infoBind', { get: function () { return this.seeYou; }, set: function (newValue) { document.getElementById('infoShow').innerText = newValue; document.getElementsByName('infoInsert')[0].value = newValue; } }); document.getElementsByName('infoInsert')[0].addEventListener('keyup', function () { obj.infoBind = this.value; }); </script> </body> </html>
通过以上代码,不难看出框架中使用的双向数据绑定的底层实现原理是通过ES5中的defineProperty属性来实现的。
相关推荐:
Atas ialah kandungan terperinci 前端之js双向数据绑定. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!