我有这个传递参数的链接。
<a href="?spalte=7">Malvenfroh City <br> </a>
但我希望这整个事情都是一个按钮但在这种情况下它不起作用,为什么?:
<form action="?spalte=7">
<input type="submit" value="Malvenfroh City">
</form>
让别人有另一种解决方案吗?
答案 0 :(得分:1)
您可以简单地将参数作为隐藏输入传递到表单中,这是一个示例:
<form action="#" method="get">
<input type="hidden" name="spalte" value="7">
<input type="submit" value="submit">
</form>
我希望这会有所帮助。