我正在使用带有 ASP.NET 和 MVC3 的 TinyMCE 编辑器插件。
我想滚动到 html 中的特定 DIV 内容。我怎样才能做到这一点。
var ed = tinymce.editors[0];
var $marker = $(ed.getBody()).find('#Content_500');
tinymce.activeEditor.selection.select($marker.get(0)).focus();
这样,选择了特定的内容,但光标不会滚动到该内容。
有任何想法吗..