仅显示HTML格式的文本字符串

时间:2019-04-24 19:24:05

标签: html5 post mailto

我设置了一个HTML表单,该表单通过mailto操作发送表单。 我希望仅显示“文本字段”中的字符串,而不显示表单格式。

如果该方法仅在HTML中完成,那就太好了。

<html>

<head>
  <title>Title of the
    document
  </title>
</head>

<body>
  <h2>Title</h2>
  <form action="mailto:mailadress@mail.com"
    method="post" enctype="text/plain">
    <p>Nachricht:
      <br />
      <textarea name=" " rows="12"
        cols="35"></textarea>
      <br>
      <p><input type="submit"
          name=" " value="Send" />
        <input type="reset"
          name="reset" value="Clear Form" />
      </p>
  </form>
</body>

</html>

实际结果是:

Text= Textstring from textarea
Send=Send

我的预期结果应该是:

Textstring from textarea

0 个答案:

没有答案