对于我们尚未允许使用php的项目,我想创建一个登录页面。我只是无法弄清楚如何制作它所以取消按钮和提交按钮带我到预定义的页面。我希望能够将一些虚拟数据输入到用户名密码字段中,当我按提交时,将其发送到我网站的“登录”部分。
<button type="submit" value="profil.html">Login</button>
我尝试过这样但它不起作用。我也试过了:
<form action="profil.html" method="get">
答案 0 :(得分:1)
你可以使用一点点js来干净利落地完成它。
<button value="Cancel" onclick="window.location.href='otherpage.html'"> Cancel</button>
答案 1 :(得分:0)
在表单中设置操作。使用提交按钮将数据提交到该URL。
&#34;取消&#34;意味着&#34;放弃表格并去其他地方&#34;。去其他地方:使用链接。
<button>Login</button>
<a href="/elsewhere">Cancel</a>