提交表单action路径问题:
./表示当前目录
../表示父级目录
/表示根目录
在如下工程中
regist.html文件中有如下标签
当regist.html文件放在WebContent中时
<form class="loginForm" method="post" action="./RegistServlet">
<form class="loginForm" method="post" action="RegistServlet">可实现
当regist.html文件放在WebContent/static中时
<form class="loginForm" method="post" action="../RegistServlet">可实现
以上两种情况<form class="loginForm" method="post" action="/RegistServlet">均无法实现
来源:CSDN
作者:qq_42275798
链接:https://blog.csdn.net/qq_42275798/article/details/104125552