我在jsp中有一个注销链接,我像这样调用注销函数
function logout(){
document.getElementById("functiontype").value="logout";
document.forms["frmTempcard"].submit();
}
我这样称呼它: <li><a href="#" onclick="logout()">Logout</a></li>
当我点击链接时,我看到以下网址:http://localhost:8080/acct/notifier[the jsp file is there in this folder only ]/TempCardServlet
当我删除 url 中的文件夹名称时,它工作正常。那么如何重定向到所需的servlet?
请帮我。