我有一个网站,其中有一个空框和一个输入文本框。我希望能够在该输入框中输入一些内容并将其打印在空框中。
HTML
<div class='printchatbox'></div>
这是空盒子和
<input type='text' name='fname' class='chatinput'>
这是输入框。
CSS
.printchatbox
{border-width:thick 10px;border-style: solid;
background-color:#fff;
line-height: 2;color:#6E6A6B;font-size: 14pt;text-align:left;float: middle;
border: 3px solid #969293;width:40%;}
如果有人能告诉我如何做到这一点,我将不胜感激。谢谢