2

TinyMCE でラップされたテキスト フィールドに単純な画像リンクを挿入しようとしていますが、マークアップがすべて取り除かれています。私のマークアップは次のようになります。

<a class="video-launcher lightbox-video-launcher" href="http://www.youtube.com/watch?v=blah" ><span class="video-launcher-bg"></span><span class="video-launcher-button"></span></a>

私の tinymce_config_url_init.html は次のようになります。

{
  "theme_advanced_toolbar_align":"left",
  "content_css":"/media/css/cms_tinymce.css,/media/css/cms_tinymce_admin.css",
  "theme_advanced_blockformats":"p,h2,h3,div,customformat",
  "theme_advanced_statusbar_location":"bottom",
  "theme_advanced_path":false,
  "plugins":"fullscreen,paste",
  "valid_elements":"*[*]",
  "media_strict":false,
  "paste_auto_cleanup_on_paste":true,
  "theme_advanced_styles":"Header 1=header1;Header 2=header2;Header 3=header3;Table Row=tableRow1",
  "width":"680",
  "theme":"advanced",
  "theme_advanced_font_sizes":"8px,10px,12px,14px,16px,18px,20px,24px,36px",
  "theme_advanced_resizing":true,
  "height":"300",
  "relative_urls":false,
  "theme_advanced_toolbar_location":"top",
  "inline_styles":true,
  "language":"en",
  "theme_advanced_buttons1":"fullscreen,|,undo,redo,|,bullist,numlist,|,anchor,link,unlink,charmap,|,code,|,justifyleft,justifycenter,justifyright,|,image,",
  "theme_advanced_buttons3":"",
  "theme_advanced_buttons2":"removeformat,styleselect,formatselect,fontselect,fontsizeselect,|,bold,italic,underline,|,forecolor,backcolor",
  "removeformat_selector":"span,div,p,h1,h2,h3"
}

フォームを送信せずに「html」ボタンをもう一度クリックすると、TinyMCE のポップアップにコンテンツが表示されないため、TinyMCE に問題があることはわかっています。

私は、TinyMCE が安全でないと思われるものや無効なものを取り除いていると想定しています。私のアプリでは、管理セクションで使用されているため、コンテンツは信頼できます。TinyMCE 構成を無効にして、このマークアップが削除されないようにするにはどうすればよいですか?

4

2 に答える 2

0

tinymce 構成パラメーターの valid_elements をよく見てください。必要に応じてそれらを設定し、有効な要素と属性を定義する必要があります。

于 2012-07-06T09:31:19.570 に答える
0

おそらく、Web サイトの CSS スタイルシートを"content_css"変数に追加しますか?

また"paste_auto_cleanup_on_paste"、true ではなく、false に設定します。

于 2012-07-05T15:58:17.647 に答える