href后添加输入提交

问题描述 投票:0回答:1

我试图在单击提交按钮时在 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 button input submit href
1个回答
0
投票

您可以在 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>
© www.soinside.com 2019 - 2024. All rights reserved.