我有一个关于从Kendo Editor中删除所有可能性标记的查询。我已经尝试了/< [^>] *> /和其他reg表达式,但无法使其正常工作。
我已经附上了我的编辑。
答案 0 :(得分:0)
要显示带有样式标记的内容,您必须在html文件中添加 <div>
@(Html.Kendo().Editor().Encode(false)
.Name("Description")
.HtmlAttributes(new { style = "width:200%;height:400px;", @id = "Ceditor" })
.Tools(tools => tools
.Clear()
.Bold().Italic().Underline().Strikethrough()
.JustifyLeft().JustifyCenter().JustifyRight().JustifyFull()
.InsertUnorderedList().InsertOrderedList()
.Outdent().Indent()
.CreateLink().Unlink()
.InsertImage()
.InsertFile()
.SubScript()
.SuperScript()
.TableEditing()
.ViewHtml()
.Formatting()
.CleanFormatting()
.FontName()
.FontSize()
.FontColor().BackColor()
.Print()
)
.Value(@<text>
</text>)
)
</div>
。
例如:
$("#list1").focus