0

次のように、TinyMCE エディターのオプションにいくつかの html を貼り付けようとしています。

<textarea onclick="this.focus(); this.select(); _gaq.push(['_trackEvent', 'Infographic', 'Click', 'marketing-infographic']);" rows="2">
  <img src="my_image.jpg" width="120" height="136" / >
  View full image
  <a href="https://site.com/my_image.jpg" />
</textarea>

...更新すると、Tiny はそれをまったく別のものに完全に書き直します。

<p>
  <img src="my_image.jpg" height="136" width="120" />
  <textarea style="height: 44px; width: 300px; margin: 2px;" onclick="this.focus(); this.select(); _gaq.push(['_trackEvent', 'Infographic', 'Click', 'marketing-infographic']);" rows="2">
    View full image
  </textarea>
  <a href="https://site.com/my_image.jpg" title="”Infographic”"> </a>
</p>

私はフォーラムを見回しましたが、ここで助けを求めて...

cleanup_on_startup: false,
trim_span_elements: false,
verify_html: false,
cleanup: false,
convert_urls: false

・・・全然役に立たない。この種の html を完全に荒廃させずにエディター経由で入力できるようにする方法はありますか?

4

1 に答える 1

2

Tinymce構成パラメーターvalid_elementsvalid_childrenを見て、関連するすべてのhtml要素と属性を有効として設定します。

于 2013-01-17T11:39:42.363 に答える