如何在Kendo Editor中使用<span style =“ textDecoration:line-through”>而不是<del>来删除线

时间:2018-08-29 21:28:26

标签: javascript kendo-ui editor

我想更改Kendo Editor删除线工具的默认行为。当前,它将文本包装在标签中。但是我想用还是标签。根据此处可能的窗口小部件配置:https://demos.telerik.com/kendo-ui/editor/custom-tools,我认为这是可行的,但我不知道如何格式化选项

我的尝试失败:

$("#editor").kendoEditor({
  formats: {
    strikethrough: {
      attr: {
        style: {
          textDecoration: "line-through"
        }
      }, 
      tags: ["span"]
    }
  },
  tools: ["strikethrough"]
});

0 个答案:

没有答案