同一个html页面有多个表单提交地址写哪

 我来答
桃子的幸福on
2018-08-14 · 知道合伙人互联网行家
桃子的幸福on
知道合伙人互联网行家
采纳数:1044 获赞数:2229
在校计算机专业学生

向TA提问 私信TA
展开全部

同一个页面多个表单提交地址卸载action即可

示例:

node.js服务器代码:

const app = require("express")();
const server = require("http").Server(app);


server.listen(80);


app.get('/test1',function (req,res) {
    let name = req.query.name;
    res.send(name+"您访问了test1");
});

app.get('/test2',function (req,res) {
    let name = req.query.name;
    res.send(name+"您访问了test2");
});

网页代码:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
</head>
<body>
<h1>表单1访问test1</h1>
<form method="get" action="http://localhost/test1">
    <input type="text" placeholder="用户名" name="name">
    <input type="submit" value="提交">
</form>
<h1>表单2访问test2</h1>
<form method="get" action="http://localhost/test2">
    <input type="text" placeholder="用户名" name="name">
    <input type="submit" value="提交">
</form>
</body>
</html>

效果:

点击第一个表单的提交

点击点二个表单的提交

代码仅供参考。

推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式