2017-08-10 10 views
-1

剣道エディタからすべての候補タグを削除するクエリがあります。/< [^>] *> /その他のreg式を試しましたが、動作させることができませんでした。kendoEditorを使用してMVCのHTML TextAreaからすべてのタグを削除します

私はエディタを添付しました。

Remove HTML tags 検索したデータからすべてのタグとスタイルの属性を削除し、プレーンテキストのみを取得する方法を教えてもらえますか?

答えて

0

アウトスタイルタグでコンテンツを表示するには、.Encode(False)を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> 
関連する問題