0

我想开发一个包含注册和登录按钮的登录 HTML 页面。在运行时的 HTML 页面中,我可以选择任何按钮(登录/注册)。单击注册时,页面应重定向到 Signup JSP 程序,单击登录页面时,页面应重定向到登录 Servlet 程序。现在的问题是我必须在html页面中的表单操作方法中提到哪个页面(JSP/SERVLET)。? 如何解决这个问题?

4

3 回答 3

3

你可以只插入文本

例子:

<a href="http://urlToSignInPage">Sign In</a>
<a href="http://urlToSignUpPage">Sign Up</a>
于 2013-01-07T10:49:06.227 回答
1

它应该是简单的超链接[GET],您不需要为此提交表单

<a href="urlToSignInPage"><!--sign in button code --></a>



<a href="urlToSignUpPage"><!--sign up button code --></a>
于 2013-01-07T07:49:11.630 回答
0

如果要使用按钮,则必须通过按钮的 onClick 等事件jQueryjavascript这是几个例子。正是你需要的。您不需要通过表单操作提交来做到这一点。

<html>
<head>
<script>
function open_win()
{
    window.open("http://yoururl.com");
    /*or 
    window.location.href = "/yourpathToPageOrServletIfany/yourfiel.jsp.html.phpOrYourServletMapping";
    */
}
</script>
</head>
<body>

<input type="button" value="Open Window" onclick="open_win()">

</body>
</html>

jquery 也有同样的可能$('#buttonId').click(function(){...in here ...});

于 2013-01-07T14:36:02.540 回答