嘗試一些HTML代碼粘貼到讀取如下對TinyMCE的編輯器選項: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>
...更新時,微小的完全重寫它,好了,完全不同的東西。
<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而不會完全混淆?
是的,即使從html中刪除了非必要的代碼,它仍然會中斷。 – vinman75