如何从提交按钮导出动作到两个不同的页面?[关闭]

问题描述 投票:0回答:1

这是一些愚蠢的,但我不知道.如何我可以导出动作到两个不同的部分从提交按钮?我想取消按钮带我到一个页面和接受按钮带我到另一个。我如何应用一个条件,采取不同的行动?

我的按钮是接受和取消...

<section>
      <form action="/news">
           <input type="submit" id="button" value="Accept"> <input type="submit" class="button2" value="Cancel">
      </form>
</section>
php html forms button submit
1个回答
3
投票
<!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可以在表单中做不同的动作,比如说

© www.soinside.com 2019 - 2024. All rights reserved.