ckeditor scrollIntoView to a div element within th

2019-09-12 10:11发布

问题:

I have a navigation menu out side ckeditor and i want to navigate within the editor as all my element in editor have ids

scrollIntoView

how does this work

any example will be good

回答1:

The information in this question (asked by myself some months ago) should get you started. The accepted answer outlines how to access elements inside the CKEditor document programmatically from JQUery.

It should be possible to fetch the desired element, and do a ScrollIntoView based on that.

This might already work (untested):

var documentWrapper = editorname.document; // replace by your CKEDitor instance ID
var documentNode = documentWrapper.$; // or documentWrapper['$'] ;
documentNode.getElementById("id").scrollIntoView(); // Insert your element ID there


回答2:

The problem is that you are not actually putting the scope inside the CKEDITOR instance. In order to get a variable pointing to the document, do this:

var ckeditorDocument = CKEDITOR.instances.[instancename].document.$;