关于form的action路径填写
Posted L1019
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了关于form的action路径填写相关的知识,希望对你有一定的参考价值。
一:可以是相对路径:
1、action="<%=request.getContextPath() %>/html/index.html" <%=request.getContextPath() %>表示回到应用的根目录下,再加上相对路径
2、action="/html/index.html" 表示在应用的根目录下搜索html/index.html /表示根目录
3、action="index.html" 表示在当前目录下搜索
二:可以是绝对路径:
action="http://localhost:8080/PracticeLogin/html/index.html"
以上是关于关于form的action路径填写的主要内容,如果未能解决你的问题,请参考以下文章