为什么刷新还是原来的this is content?
是不是并没有改变data的content的值
<input type="text" id="textInput">
输入:<span id="textSpan"></span>
var obj = {},
textInput = document.querySelector('#textInput'),
textSpan = document.querySelector('#textSpan');
Object.defineProperty(obj, 'foo', {
set: function (newValue) {
textInput.value = newValue;
textSpan.innerHTML = newValue;
}
});
textInput.addEventListener('keyup', function (e) {
obj.foo = e.target.value;
});
是没有写v-model吧
input的value值
我觉得你可以贴代码出来,没代码不知道哪里错?