gpt4 book ai didi

html - 嵌套表格的解决方案

转载 作者:行者123 更新时间:2023-11-27 22:29:52 24 4
gpt4 key购买 nike

有没有办法拥有嵌套表单?

像这样

<form action="" method="post">
<input type="text".... />
<input type="text".... />
<form action="some action">
<input type="submit" .... />
</form>
</form>

如果没有,我将如何在没有嵌套表单的情况下获得相同的功能

最佳答案

不,你不能有嵌套表单,但有一个简单的解决方案可以解决你的问题。

<form action="" method="post">
<input type="submit" name="action" value="action1" />
<input type="submit" name="action" value="action2" />
</form>

如果您使用 PHP,此代码将处理您的表单提交:

//if user clicks on the first submit button, action1 is triggered
if (isset($_POST['action']) && $_POST['action'] == 'action1') {
// do something
}

//if user clicks on the second submit button, action2 is triggered
if (isset($_POST['action']) && $_POST['action'] == 'action2') {
// do something else
}

ps:我看到你使用 C# 和 .NET,这将被翻译成:

public class ExampleController : Controller
{
....

[HttpPost]
public ActionResult Index(string action)
{

if (!string.IsNullOrEmpty(action) == "action1") {
// Do something
}

if (!string.IsNullOrEmpty(action) == "action2") {
// Do something
}
}

...
}

关于html - 嵌套表格的解决方案,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18834656/

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