2017-11-12 4 views
1

私はこの問題に苦しんでいます。私は非常に私のウェブサイトの作業のためのtinymceのv3を持っていたjavascriptに新しいですが、私はまた、それを複雑にする方法を見て更新したい。だから私はv4をインストールしたが、私はしばらくかかったが、最終的に私は働いていた。そのテキストの表示の意味で。私は自分のページを投稿するときに、HTMLタグでテキストを返しませんが、文字列を返します。そして、私がブロッククォートを使うときは、 [quote] [/ quote]で文字列を返します。 これは私が使用しているコードです。TinymceはHTMLを返すのではなく、テキストだけを返します

<script src="@Url.Content("~/Scripts/tinymce/jquery.tinymce.min.js")" type="text/javascript"></script> 

<script type="text/javascript"> 

    (function(){ 

     $(function() { 

      $('#@ViewData.TemplateInfo.GetFullHtmlFieldName(string.Empty)').tinymce({ 

      // Location of TinyMCE script 
      script_url: '@Url.Content("~/Scripts/tinymce/tinymce.js")', 
      theme: "modern", 

      height: "300", 
      width: "1150", 
      verify_html: true, 
      statusbar: true, 
      plugins : "pagebreak,bbcode,link,table,save,advhr,advimage,advlink,emotions,iespell,inlinepopups,insertdatetime,preview,media,searchreplace,print,contextmenu,paste,directionality,fullscreen,noneditable,visualchars,nonbreaking,xhtmlxtras,template,wordcount,advlist,autosave", 

      // Theme options 
      theme_advanced_buttons1 : "save,newdocument,|,bold,italic,underline,strikethrough,|,justifyleft,justifycenter,justifyright,justifyfull,styleselect,formatselect,fontselect,fontsizeselect", 
      theme_advanced_buttons2 : "cut,copy,paste,pastetext,pasteword,|,search,replace,|,bullist,numlist,|,outdent,indent,blockquote,|,undo,redo,|,link,unlink,anchor,image,cleanup,help,code,|,insertdate,inserttime,preview,|,forecolor,backcolor", 
      theme_advanced_buttons3 : "tablecontrols,|,hr,removeformat,visualaid,|,sub,sup,|,charmap,emotions,iespell,media,advhr,|,print,|,ltr,rtl,|,fullscreen", 
      theme_advanced_buttons4 : "insertlayer,moveforward,movebackward,absolute,|,styleprops,|,cite,abbr,thisisnotvaled,acronym,del,ins,attribs,|,visualchars,nonbreaking,template,pagebreak,restoredraft,codehighlighting,netadvimage", 
      theme_advanced_toolbar_location : "top", 
      theme_advanced_toolbar_align : "left", 
      theme_advanced_statusbar_location : "bottom", 
      theme_advanced_resizing : false, 

      // Example content CSS (should be your site CSS) 
      content_css : "@Url.Content("~/Scripts/tinymce/css/content.css")", 
      convert_urls: false, 

      // TODO: Make line breaks work and qoutes are now also not working 

      force_br_newlines: true, 
      force_p_newlines: true, 
      forced_root_block: '', 
      remove_linebreaks: false, 
      convert_newlines_to_br: true, 

      // Drop lists for link/image/media/template dialogs 
      template_external_list_url : "lists/template_list.js", 
      external_link_list_url : "lists/link_list.js", 
      external_image_list_url : "lists/image_list.js", 
      media_external_list_url : "lists/media_list.js" 

     }); 

     }); 

    })(); 

</script> 

また、改行を強制しません。主にHTMLも返さないためです。私は検索していますが、私は何も具体的に見つけることができません。だから、それをsimplyfyするために、そのはこのようにそれを返す:見つけるために私の完全な24時間を要したHello world. But i want it like this : <p>hello world</p>


答えて

0

よくし。それはBBcode Pluginでした。 Tinymceのドキュメントは実際にはありません。問題を抱えている人にとっては、あなたがプラグインであることを確認していることを確認してください。

関連する問題