只需单击一下,即可在CKEditor中打开链接
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了只需单击一下,即可在CKEditor中打开链接相关的知识,希望对你有一定的参考价值。
我正在使用CKEditor,我已经在文本中添加了一个链接。当我们点击(一次)CKEditor内的链接时,是否可以直接转到链接?
答案
你尝试过类似的东西(需要jQuery):
CKEDITOR.on('instanceReady', function(ev) {
$('iframe').contents().click(function(e) {
if(typeof e.target.href != 'undefined') {
window.open(e.target.href, 'new' + e.screenX);
}
});
});
来自https://dev.ckeditor.com/ticket/7145#comment:1的修补程序
另一答案
CKEDITOR.on('instanceReady', function (ev) {
$('iframe').contents().click(function (e) {
if (typeof e.target.href !== 'undefined') {
window.open(e.target.href, 'new' + e.screenX);
} else if (typeof e.currentTarget.activeElement.href !== 'undefined') {
window.open(e.currentTarget.activeElement.href, 'new' + e.screenX);
}
});
});
以上是关于只需单击一下,即可在CKEditor中打开链接的主要内容,如果未能解决你的问题,请参考以下文章
Slate Docs 功能可在单击侧边栏中的其他链接时保持导航手风琴打开
CKEditor 5如何从任何小部件/模型/视图中获取单击,更新和删除的事件
CKEditor:双击url或任何其他事件时弹出停止链接对话框
html 只需单击一下,此书签就可以在浏览器中为您提供代码编辑器
getFrameDocument的访问被拒绝错误:ckeditor.js中的ckeditor版本4.0.1中的function()