Google日历编辑事件 - jQuery编辑时未保存说明

时间:2017-06-04 08:57:16

标签: javascript jquery google-chrome google-chrome-extension google-calendar-api

我尝试编写Chrome扩展程序以填写Google日历中的事件说明 - 编辑活动窗口。但是当我使用Jquery添加文本时:$(' textarea')。val(' test');并保存该事件,不保存说明。有人知道如何解决这个问题吗?

1 个答案:

答案 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();
        });