我必须创建一个带有两个提交按钮的 html 表单
他们都必须捕获数据,然后重定向到不同的页面
我用了这段代码
<input type="button" name="submit1" value= "submit" onclick="first();">
<input type="button" name="Submit2" value= "submit and refill "onclick="second();">
在头部我定义了函数
`
**<script type="text/javascript">
function sub() {
new name.target = 'https://www.google.com';
new name.submit();
}
function subr() {
new name.target = 'https://www.gmail.com';
new name.submit();
}
</script>**
但它不起作用..我只需要使用 javascript 和 html
plzzz 求救!!