admin管理员组文章数量:1316376
I have a div whose innerHTML i want to put it in textarea, the problem is that the div content is with html tags and when i place that in textarea it does not show the executed html code but it shows text with html tags. I want the executed html code in the textarea, how can I achieve this? I have searched all through the net but not able to find it. Any kind of help will be highly appreciated
Thank you
I have a div whose innerHTML i want to put it in textarea, the problem is that the div content is with html tags and when i place that in textarea it does not show the executed html code but it shows text with html tags. I want the executed html code in the textarea, how can I achieve this? I have searched all through the net but not able to find it. Any kind of help will be highly appreciated
Thank you
Share Improve this question asked May 11, 2012 at 12:42 Eric IlaviaEric Ilavia 1013 silver badges9 bronze badges 7- Your question is not very clear. What do you want to see in the text area? – Jivings Commented May 11, 2012 at 12:43
- Could you replace the textarea with a div? Why are you using a textarea element? – Fabrizio Calderan Commented May 11, 2012 at 12:43
- @Jivings I think he wants to see the text rendered in the textarea as it would have been rendered in the div. – Simone Commented May 11, 2012 at 12:46
- 1 You need to use some WYSIWYG Editor, TinyMCE for example tinymce. – antyrat Commented May 11, 2012 at 12:47
- textarea is for text only. you cannot put any html tags in it. if you do need any maekup, just use a simple div. – Sagiv Ofek Commented May 11, 2012 at 12:47
1 Answer
Reset to default 8Instead of textarea
you can use div
with contenteditable attribute:
<div contenteditable="true">
This text can be edited by the user.
</div>
本文标签: javascriptPut html code in textareaStack Overflow
版权声明:本文标题:javascript - Put html code in textarea - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1741999919a2410802.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论