*这是我的HTML代码:
<form method="POST" action="/sendMail">
是否可以将此操作用于此网址: test/en/sendMail
?
我如何在html中定义该动作应该听取
test/en/sendMail
test/de/sendMail
test/sendMail
不使用这3次
<form method="POST" action="/en/sendMail">
<form method="POST" action="/de/sendMail">
<form method="POST" action="/sendMail">
我顺便使用NodeJs。 谢谢你的帮助!
答案 0 :(得分:0)
不太确定,但您可以在提交按钮上使用formaction
:
<form>
[fields]
<input type="submit" value="Submit to a" formaction="/submit/a">
<input type="submit" value="submit to b" formaction="/submit/b">
</form>
有关此内容的更多信息,请访问:http://www.wufoo.com/html5/attributes/13-formaction.html