用可编辑的div替换评论框中的textarea

时间:2013-10-09 11:05:45

标签: javascript jquery html

评论框适用于<textarea>,但我需要使用div代替它。 这是文本区域代码:

<textarea class="commentMark" id="commentMark-<?php  echo $row['p_id'];?>" onblur="if (this.value=='') this.value = 'Write a comment'" onfocus="if (this.value=='Write a comment') this.value = ''" onKeyPress="return SubmitComment(this,event)" wrap="hard" name="commentMark" style=" background-color:#fff; overflow: hidden;" cols="60">Write a comment</textarea>

我尝试将其替换为contenteditable div

<div class="commentMark" id="commentMark-<?php  echo $row['p_id'];?>" onblur="if (this.value=='') this.value = 'Write a comment'" onfocus="if (this.value=='Write a comment') this.value = ''" onKeyPress="return SubmitComment(this,event)" wrap="hard" name="commentMark" style=" background-color:#fff; overflow: hidden;" cols="60">Write a comment</div>

但是在文本区域,当我按下输入评论被发布。当我输入div时,它没有任何效果。

单击“评论”按钮

时出现
div

0 个答案:

没有答案