HTML提交表单无法正常工作

时间:2019-05-06 15:18:28

标签: web-services web web-applications web-crawler

我最近开始练习HTML。我正在研究没有任何数据的简单提交表单。 这是我的index.html代码

func setNavigationBarHeightWith(duration: TimeInterval, navHeight: CGFloat, alpha: CGFloat) {

    UIView.animate(withDuration: duration) {

        self.navigationBar.frame.origin.y = navHeight
        self.containerTopConstraint.constant = navHeight - 20
        self.urlField.alpha = alpha
        self.view.layoutIfNeeded()
    }
}

当我按“提交”时,它显示“找不到文件a.html?”,我不知道它会添加“?”。最后。如果删除?手动从链接起作用。

1 个答案:

答案 0 :(得分:0)

<html>
   <body>
      <form action="/a.html" method="POST">
         <center>
            <h1>Vignesh</h1>
            > 
         </center>
         <BR><br> <input type="submit" value="SUBMIT"> 
      </form>
      >
   </body>
</html>

添加属性method="POST"将解决您的问号问题。