我有一些文本框。在<textarea> </textarea>
之间插入两个值$ firstname,$ lastname。现在我想把大胆的名字改为$ firstname。
当我在下面尝试这个代码时,它无效。
"<textarea><b>" . $firstname. "</b>" . $lastname . "<textarea>"
我该怎么做才能正确。可能吗?当我使用<div>
标签时,它也不起作用。
答案 0 :(得分:1)
您应该查看DIV等通用元素的contenteditable属性。
答案 1 :(得分:0)
Textarea只接受纯文本。如果你想使用html,你应该看一下wysiwyg编辑。
答案 2 :(得分:0)
不要在textareas中使用HTML,他们只需要使用纯文本。
检查一些可能对您有所帮助的所见即所得(所见即所得):
http://www.1stwebdesigner.com/design/10-best-wysiwyg-text-and-html-editors-for-your-next-project/
祝你好运!