我有一个链接,当点击时,抓取一些HTML并将其插入到TincyMCE中,但是我想将焦点放在编辑器上但不能让它专注于编辑器?
这是我的点击方法
$(".quotebutton").click(function (event) {
event.preventDefault();
var postid = $(this).attr('rel');
var postcontentid = "#postcontent" + postid;
var postcontent = "<pre>" + $(postcontentid).html() + "</pre>";
tinyMCE.execCommand('mceInsertContent', false, postcontent);
tinyMCE.get('txtPost').focus();
});
为什么这不起作用的任何想法?正在插入HTML,它只是没有聚焦?
答案 0 :(得分:1)
尝试
tinyMCE.get('txtPost').execCommand('mceInsertContent', false, postcontent);//!!!
tinyMCE.get('txtPost').focus();