<form method="POST" action="auth/signin">
Username: <input name="username" type="text" value=""/>
Password: <input name="password" type="password" value=""/>
<a href="auth/signin">Log In</a>
</form>
单击“登录”链接(而不是使用提交按钮)时如何发布参数?
最佳答案
我认为你需要 Javascript,像这样:
<a href="javascript:document.yourform.submit();">Log In</a>
关于html - 将链接作为提交按钮发布,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/2259910/