1

如何防止 CKEditor 过滤掉 tel 协议?

最好的情况是完全阻止 CKEditor 过滤。

HTML:

<a href="tel:1-800-222-3334"> (800) ABC - DEFG </a>

配置:

CKEDITOR.editorConfig = function( config ) {
config.toolbar = 'Full';    
config.forcePasteAsPlainText = true;    
config.width = '100%';  
config.height = '500px';    
config.toolbarCanCollapse = true;
config.format_p = { element: 'p' };
config.format_div = false;
config.format_tags = 'p;h1;h2;h3;h4;h5;h6;pre;address';
config.allowedContent = true;
config.extraAllowedContent = true;
config.toolbar_Full = [...];    
config.protectedSource.push( /<i[\s\S]*?\>/g ); //allows beginning <i> tag
config.protectedSource.push( /<\/i[\s\S]*?\>/g ); //allows ending </i> tag

}
4

1 回答 1

1

这里的问题不在于 CKEditor。过滤发生在服务器端,SharePoint 正在剥离href="tel:1-800-222-3334". 另一个讨厌 SharePoint 的原因。

于 2013-09-10T18:40:06.020 回答