这是一些愚蠢的,但我不知道.如何我可以导出动作到两个不同的部分从提交按钮?我想取消按钮带我到一个页面和接受按钮带我到另一个。我如何应用一个条件,采取不同的行动?
我的按钮是接受和取消...
<section>
<form action="/news">
<input type="submit" id="button" value="Accept"> <input type="submit" class="button2" value="Cancel">
</form>
</section>
<!doctype html>
<html>
<head>
</head>
<body>
<form action="submit.html">
<label for="name">Name</label>
<input type="text" name="name">
<label for="lastname">Last Name</label>
<input type="text" name="lastname">
<button type="submit" id="submit">submit</button>
<button type="cancel" formaction="cancel.html">cancel</button>
</form>
</body>
</html>
基本上,用html可以在表单中做不同的动作,比如说