我使用StrInsert for CKEditor,它允许您创建添加到ckeditor工具栏的自定义下拉列表,它只是将一个文本字符串输出到编辑器。
Each insertable string dict is defined by three possible keys: 'value': The value to insert. 'name': The name for the string to use in the dropdown. 'label': The voice label (also used as the tooltip title) for the string. Ex. strings.push(['value', 'name', 'label']);
我的问题是我想输出一个带有" \"的字符串。反斜杠但我收到了一个错误。 这是我使用的代码的一部分:
CKEDITOR.plugins.add('strinsert',
{
requires : ['richcombo'],
init : function( editor )
{
// array of strings to choose from that'll be inserted into the editor
var strings = [];
strings.push(['[WEB_LOG]', 'Extranet Login', 'Extranet Login']);
strings.push(['[ALL_DIN=\\SRV-xxx\TimDoc$\Amm\con_(COD_ASS).pdf]', 'Note', 'Insert attachments pdf']);
在这段代码输出[WEB_LOG]它没关系但是[ALL_DIN = \ ....]给我错误我认为因为" \"是逃脱的角色...... 有办法解决吗? 谢谢