我试图在单击提交按钮时在 churchid= 之后添加输入数字。我无法将输入与 href 结合起来。这是我的代码,将我重定向到 href 但不在 =
之后添加输入
<body>
<label for="number">Number:</label><br>
<input type="text" id="number"><br><br>
<a href="https://afiliaciones.ajecpr.com/api/unsubmit?fiscalYear=2023&churchId=">
<button>Unlock</button>
</a>
</body>
</html>
您可以在 HTML 中使用
<form></form>
和 <input type="hidden">
。
<body>
<form action="https://afiliaciones.ajecpr.com/api/unsubmit">
<input type="hidden" name="fiscalYear" value="2023">
<label for="number">Number:</label><br>
<input type="text" name="churchId"><br><br>
<button type="submit">Unlock</button>
</form>
</body>