如何将此代码链接到第2页?
<div class="login">
<h1>Login</h1>
<form method="post">
<input type="text" name="u" placeholder="Username" required="required" />
<input type="password" name="p" placeholder="Password" required="required" />
<button type="submit" class="btn btn-primary btn-block btn-large"></a>Let me in.</button>
答案 0 :(得分:0)
你不应该使用那些贴近的标签</a>
你可以给表单执行一些动作。
<form action="somewhere.html">
<input type="text" name="u" placeholder="Username" required="required" />
<input type="password" name="p" placeholder="Password" required="required" />
<button type="submit" class="btn btn-primary btn-block btn-large">Let me in.</button>
</form>
答案 1 :(得分:0)
如果你想使用&#39; a&#39;标记应该看起来像这样:
<a href="http://facebook.com"><button type='button'>lets get social</button></a>
如果您希望在新标签/窗口中打开新链接,可以将其添加到&#39; a&#39;标签:target="_blank"
ie: <a href="http://facebook.com" target="_blank">