如果我有一个这样的textarea块…
<textarea name="myTextArea" cols="100" rows="20" readonly=readonly> .. text area content ... </textarea>
如何在此文本块内嵌入HTML格式的文本?如果我能想到以下应该工作?
<textarea name="myTextArea" cols="100" rows="20" readonly=readonly> <b>Hello how are you today?</b> </textarea>
举个例子.但是那个句子不会显示为粗体.也许我只是想做一些不能做的事情?
解决方法
我确定答案是否定的 – 不能用textarea来做.