我正在使用标准的 TinyMCE 设置,但是我遇到了问题。当我想插入链接(使用链接工具)时,弹出窗口会按预期打开。
从那里我想选择链接目标选项。当我单击它时,它应该打开一个下拉菜单,并带有选择选项。
While the options appear, the dropdown list is positioned at the bottom of the view instead of under the dropdown selector as one would expect.
我一直试图通过 Google 和 Stack Overflow 线程找到解决方案,但我还没有运气。
我也尝试过操作 DOM,但在单击选择时找不到在选择器下重新定位下拉列表的方法。
我从 2018-02-19 开始使用 TinyMCE 版本 4.7.7。
谢谢你的时间。
- - - - - 更新 - - - - - - -
提供Js fiddle以显示问题
<script src="https://cdnjs.cloudflare.com/ajax/libs/tinymce/4.7.7/tinymce.min.js"></script>
<script>
tinymce.init({
selector: "textarea",
plugins: [
"advlist autolink lists link image charmap print preview anchor",
"searchreplace visualblocks code fullscreen",
"insertdatetime media table contextmenu paste"
],
toolbar: "insertfile undo redo | styleselect | bold italic | alignleft aligncenter alignright alignjustify | bullist numlist outdent indent | link image"
});
</script>
<h2>test</h2>
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<textarea></textarea>