我尝试编写Chrome扩展程序以填写Google日历中的事件说明 - 编辑活动窗口。但是当我使用Jquery添加文本时:$(' textarea')。val(' test');并保存该事件,不保存说明。有人知道如何解决这个问题吗?
答案 0 :(得分:0)
解决方案是通过JS插入文本,并关注字段:
$("#myfield").keyup(function(e){
//text changed, update description field
text_tv = $(this).val();
descr.val('');
descr.focus();
document.execCommand('insertText', false, convert_to_tv(text_tv));
$(this).focus();
});