gpt4 book ai didi

html - 表单操作参数不起作用

转载 作者:行者123 更新时间:2023-12-05 08:43:33 24 4
gpt4 key购买 nike

<a href="index.php?page=test"> Test </a>
<br><br>
<form action="index.php?page=test">
<input type="text" placeholder="enter text"> </input>
<button type="submit">Send</button>
</form>

为什么在表单为我提供 url http://example.com/index.php 时链接正常工作?在浏览器的地址栏中?我在 action 属性中定义的每个参数都被切断了

最佳答案

您必须使用此代码。

<a href="index.php?page=test"> Test </a>
<br><br>
<form action="index.php" method="get">
<input type="text" placeholder="enter text"> </input>
<input type="hidden" name="page" value="test">
<button type="submit">Send</button>
</form>

关于html - 表单操作参数不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27964406/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com