如何使 <a> link </a> 标签与提交按钮一起使用?
how to make the <a> link </a> tag work with a submit button?
如何使 <a> link </a>
标签与提交按钮一起使用?
现在用表单发送数据,但我还需要 <a> link </a>
link 才能工作
我的代码只对提交按钮有效
<form method="POST" action="{{ route('enviado') }}">
@csrf
<input type="hidden" name="id" value="{{$hoy->id}}">
<a href="https://api.whatsapp.com/send" target="_blank"> <button type="submit">Send</button></a>
</form>
求助
也许您可以尝试删除 <a>
标签,然后在您的 <form>
标签上使用它
<form method="POST" action="{{ route('enviado') }}" onsubmit="window.open('https://api.whatsapp.com/send', '_blank');">
如何使 <a> link </a>
标签与提交按钮一起使用?
现在用表单发送数据,但我还需要 <a> link </a>
link 才能工作
我的代码只对提交按钮有效
<form method="POST" action="{{ route('enviado') }}">
@csrf
<input type="hidden" name="id" value="{{$hoy->id}}">
<a href="https://api.whatsapp.com/send" target="_blank"> <button type="submit">Send</button></a>
</form>
求助
也许您可以尝试删除 <a>
标签,然后在您的 <form>
标签上使用它
<form method="POST" action="{{ route('enviado') }}" onsubmit="window.open('https://api.whatsapp.com/send', '_blank');">