gpt4 book ai didi

html - 一个表单中按钮的不同操作 url

转载 作者:太空宇宙 更新时间:2023-11-04 14:04:55 26 4
gpt4 key购买 nike

表单中有一些按钮。我希望其中一个使用另一个 url 作为操作 url。但我希望它在那个表单中,我不想也不能为此创建另一个表单。

我该怎么做?

最佳答案

HTML5 (IE>9), 提供 formaction attribute .

 <form action="demo_form.asp" method="get">
First name: <input type="text" name="fname"><br>
Last name: <input type="text" name="lname"><br>
<button type="submit">Submit</button><br>
<button type="submit" formaction="demo_admin.asp">Submit as admin</button>
</form>

A form with two submit buttons. The first submit button submits the form data to "demo_form.asp", and the second submits to "demo_admin.asp".

关于html - 一个表单中按钮的不同操作 url,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14769268/

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