帝国CMS7.5文章编辑器超链接默认新窗口打开设置方法

建站教程 阅读
帝国cms7.5文章编辑器超链接新窗口打开设置的方法
在config.js文件中添加,路径:/e/admin/ecmseditor/infoeditor/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 we are
   // interested on (the "Link" dialog).
   if ( dialogName == 'link' )
   {
      // Get a reference to the "Target" tab.
      var targetTab = dialogDefinition.getContents( 'target' );

      // Set the default value for the target field.
      var targetField = targetTab.get( 'linkTargetType' );
      targetField['default'] = '_blank';
   }
});
修改link.js
如果要编辑器超链接新窗口打开设置,则需要把inkTargetType对应的默认default选项,改为_blank,修改后的代码如下
id:"linkTargetType",label:c.target,"default":"_blank"
修改完成,刷新js后,编辑文章超链接就会默认新窗口打开了
link.js脚本文件详细路径:/e/admin/ecmseditor/infoeditor/plugins/link/dialogs/link.js
link.js详细参数对应的中文脚本说明路径:/e/admin/ecmseditor/infoeditor/lang/zh-cn.js

本文链接:https://niujc.com/com/1453339.html

栏目:建站教程
来源:
标签:ecms
时间:2022-07-11

晚上好!当前时间为
目前距离2023年春节还有
TOP