如何在我的网页(博客)的其他位置显示文本区域中的文本?

时间:2012-02-14 20:02:40

标签: html web comments

我正在为我的博客发帖评论,但我不知道如何在我的页面中显示文字。

到目前为止,我已经得到了这个:

<html>
<body>
<form style="margine:0px" method="post" target="view" id="WriteItForm">
<table border="2" bordercolor="#000000">
  <tr>
    <td>
      <h3>Comments</h3>
    </td>
  </tr>
  <tr>
    <td>
      <textarea id="text_area" cols="20">
   --New Comment--
      </textarea>
    </td>
  <tr>
</table>
<table border="2" bordercolor="#000000">
  <tr>
    <td>
      <p>There Is Currently No Comments</p>
    </td>
  </tr>
</form>
<p id="draw_here"></p>
</body>
</html>

它提供了一个像<a href="http://www.zubrag.com/tools/html-password-protector-encoder.php">here</a>那样的文本区域。

表单的功能是当你点击提交按钮(我不知道怎么做)时,它将textarea中的文本添加到我的帖子中。

我希望它在您点击按钮时在帖子中添加一些文字,以便其他人可以阅读评论,以便我可以使用它们来改善我的页面。

1 个答案:

答案 0 :(得分:1)

请转到MDN的“学习HTML”页面:https://developer.mozilla.org/en-US/learn/html

这里有很多错误,我甚至不知道从哪里开始。