See More

// let VchatInfo = {}; // let Input = document.getElementById('input'); // let introduceDom = document.getElementById('introduce'); // Object.defineProperty(VchatInfo, "introduce", { // get: function(){ // return introduceDom.innerHTML; // }, // set: function(introduce){ // introduceDom.innerHTML = introduce; // } // }); // VchatInfo.introduce = Input.value = "vchat是一个社交聊天系统"; // Input.oninput = function() { // VchatInfo.introduce = Input.value; // console.log(VchatInfo.introduce); // };