同一个html页面有多个表单提交地址写哪
展开全部
同一个页面多个表单提交地址卸载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>
效果:
点击第一个表单的提交
点击点二个表单的提交
代码仅供参考。
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询