博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
修改 CKEditor 超链接的默认协议
阅读量:4974 次
发布时间:2019-06-12

本文共 731 字,大约阅读时间需要 2 分钟。

在 config.js 中添加如下代码

CKEDITOR.on( 'dialogDefinition', function( ev ){		// Take the dialog name and its definition from the event data.		var dialogName = ev.data.name;		var dialogDefinition = ev.data.definition; 		// Check if the definition is from the dialog window you are interested in (the "Link" dialog window).		if ( dialogName == 'link' )		{			// Get a reference to the "Link Info" tab.			var infoTab = dialogDefinition.getContents( 'info' ); 			// Set the default value for the URL field.			// var urlField = infoTab.get( 'url' );			// urlField['default'] = 'www.example.xxxcom';						var protocolField = infoTab.get( 'protocol' );			protocolField['default'] = "";		}});

参考:

 

 

转载于:https://www.cnblogs.com/forestk/p/7107066.html

你可能感兴趣的文章
optionMenu-普通菜单使用
查看>>
2016-2017-2点集拓扑作业[本科生上课时]讲解视频
查看>>
【MemSQL Start[c]UP 3.0 - Round 1 C】 Pie Rules
查看>>
Ognl中“%”、“#”、“$”详解
查看>>
我对应用软件——美团的看法
查看>>
执行了的程序,才是你的程序.
查看>>
struts2.x + Tiles2.x读取多个xml 配置文件
查看>>
表单校验之datatype
查看>>
python第六篇文件处理类型
查看>>
ubuntu16系统磁盘空间/dev/vda1占用满的问题
查看>>
grid网格布局
查看>>
JSP常用标签
查看>>
九涯的第一次
查看>>
处理器管理与进程调度
查看>>
向量非零元素个数_向量范数详解+代码实现
查看>>
java if 用法详解_Java编程中的条件判断之if语句的用法详解
查看>>
matlab sin函数 fft,matlab的fft函数的使用教程
查看>>
mysql adddate()函数
查看>>
mysql sin() 函数
查看>>
单片机复位电路
查看>>