我在tinymce編輯器中有一個文本框。我想通過使用JavaScript更改文本框文本。 任何人都可以告訴我這怎麼可能? 謝謝使用javascript在tinymce編輯器中更改文本框文本
1
A
回答
0
將TinyMCE setContent方法我希望這將幫助你..
// Sets the HTML contents of the activeEditor editor
tinyMCE.activeEditor.setContent('<span>some</span> html');
// Sets the raw contents of the activeEditor editor
tinyMCE.activeEditor.setContent('<span>some</span> html', {format : 'raw'});
// Sets the content of a specific editor (my_editor in this example)
tinyMCE.get('my_editor').setContent(data);
// Sets the bbcode contents of the activeEditor editor if the bbcode plugin was added
tinyMCE.activeEditor.setContent('[b]some[/b] html', {format : 'bbcode'});
請TinyMCE的文檔http://www.tinymce.com/wiki.php/API3:method.tinymce.Editor.setContent
0
這並不難。首先,您需要獲取編輯器的正文。然後你可以嘗試找到你的textarea。作爲BIOS的建議它是一個有用的id給你的textarea。這裏是必要的代碼
var editor = tinymce.get('your_editor_id');
$(editor.getBody()).find('textarea#your_textarea_id').innerHTML = 'my_new_text';
相關問題
- 1. 使用TinyMCE作爲文本編輯器
- 2. 在tinymce編輯器中選擇文本
- 3. 無法在TinyMCE富文本編輯器中輸入文本
- 4. 使文本框可編輯使用JavaScript
- 5. TinyMce編輯器文本框不可編輯
- 6. C++編輯框文本更改
- 7. TinyMCE文本編輯器和默認HTML
- 8. 定製的TinyMCE文本編輯器
- 9. XML文本編輯器 - 文本框
- 10. tinyMCE文本框顯示在編輯器下面
- 11. 在更新面板中使用它時不顯示TinyMCE編輯器文本
- 12. 在轉發器中編輯文本框
- 13. TinyMce編輯器中的普通文本編輯器和富文本編輯器選項
- 14. TinyMCE文本編輯器不加載我的文本
- 15. 使用文本編輯器編輯服務器中的文件
- 16. 使用execCommand在UIWebView中使用Javascript文本編輯器
- 17. 動態添加TinyMCE編輯器到文本框
- 18. QT文本編輯器 - 文本從上次保存更改?
- 19. 使用Javascript更改文本
- 20. Tinymce編輯器在不同長度的文本行上更改大小
- 21. 將best_in_place與TinyMCE等富文本編輯器結合使用
- 22. 使用React的TinyMCE編輯器無法訪問本地文件
- 23. 使用tinyMCE和Node Js的協作文本編輯器項目?
- 24. 使用tinymce 4.0文本編輯器如何限制字符?
- 25. 如何使用javascript更改asp.net文本框的文本屬性
- 26. 使用javascript動態更改TinyMCE編輯器的背景
- 27. 在android中編輯框更改文本後替換圖標
- 28. Flex中的Javascript富文本編輯器
- 29. 在Javascript中更改文本
- 30. TinyMCE不會在編輯器中顯示格式化文本
此代碼設置tinymce編輯器的內容。但實際上我想改變一個tinymce編輯器中的文本框文本。我GOOGLE了很多,但沒有用。 pl幫我 – user1809274
@ user1809274使用文本框ID設置文本,請檢查這個小提琴http://jsfiddle.net/3sSVa/這將設置一個文本框內的文本,我希望這會幫助你 – super