Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
假设我想以 HTML 形式进行双重操作。
我有这样的代码
<form name="input" action="" method="post"> Username: <input type="text" name="user"> <input type="submit" value="Submit"> </form>
那么,如何将上面的 2 个动作插入到action=""? 有可能这样做吗?
action=""
没有。您只能拥有一个声明action的属性<form>
action
<form>
但是,您可以尝试:
为您的第一个操作执行 AJAX POST并在其成功处理程序上提交实际表单
为您的第一个操作编写服务器端脚本,以便在完成后重定向到您的第二个操作。
在一个表单中,您只能给出一个 action="action.php"。但是告诉我们你为什么想要有两个动作?