我想在文本区域字段中清除用户输入,但它不起作用。 当我在浏览器的控制台中打印该值时,它似乎是“空”,但文本仍然存在于该字段中。
我正在使用Meteor 0.9.3。这是我的代码:
Meteor.call('submitMessageForChat', message, this._id, function(error) {
if (error) {
throwWarning('error', error.reason, error.details);
return null;
}
$('#chat-input').val('');
});
<textarea id="chat-input" name="message" type="text" value="" rows="5" class="form-control"></textarea>
非常感谢任何帮助!