使用kendoEditor从MVC中的HTML TextArea中删除所有标记

时间:2017-08-10 06:19:26

标签: html asp.net-mvc razor tags

我有一个关于从Kendo Editor中删除所有可能性标记的查询。我已经尝试了/< [^>] *> /和其他reg表达式,但无法使其正常工作。

我已经附上了我的编辑。

Remove HTML tags 任何人都可以告诉我如何从检索到的数据中删除所有这些标签和样式属性,并仅获取纯文本。

1 个答案:

答案 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