首页 > 解决方案 > 提交表单后,Gmail 网站无法打开

问题描述

<head>
  <meta charset="utf-8">
  <title>To Contact Form</title>
</head>

<body>
  <h1>THE FORM</h1>
  <hr>
  <form action="mailto:debiocbkr@gmail.com" method="post" enctype="text/plain">
    <label>Your Name</label>
    <input type="text" name="Your Name" value=""><br>
    <label>Email</label>
    <input type="email" name="Email" value=""><br>
    <label>Your Message:</label><br>
    <textarea name="Your Message:" rows="10" cols="30"></textarea><br>
  <input type="submit" name="">
  </form>
</body>

</html>

单击提交按钮后,响应应该是打开 Gmail 网页,但它什么也没打开。它根本没有反应。

标签: html

解决方案


推荐阅读