我正在使用帶有標(biāo)簽的提交按鈕。然而,還需要使用一個(gè)按鈕。我可以在一個(gè)表單中使用兩個(gè)帶有標(biāo)簽的提交按鈕嗎?<div> ... <form id="action-1" action='my action1 html' method="post"> <input class="mini-action" type="text" name="mini" value="1"> </form></div><div class="details"> // A tag submit button currently in use <a title="action1" href="#" onclick="document.getElementById('action-1').submit()">action-1</a></div><div class="details"> // ToDo: Here I want to send to action2 url when submit button is clicked. <a title="action2" href="#" onclick="document.getElementById('action-2').submit()">action-2</a></div>
1 回答

一只斗牛犬
TA貢獻(xiàn)1784條經(jīng)驗(yàn) 獲得超2個(gè)贊
您使用的標(biāo)簽不是提交按鈕,而是被劫持以充當(dāng)按鈕的鏈接,此外,將提交按鈕放置在它們提交的表單中被認(rèn)為是最佳實(shí)踐。
您可以使用屬性覆蓋提交按鈕的操作formaction
<form action="action-1">
<!-- input fields go here -->
<button type="submit">this will trigger action-1</button>
<button type="submit" formaction="action-2">this will trigger action-2</button>
</form>
- 1 回答
- 0 關(guān)注
- 189 瀏覽
添加回答
舉報(bào)
0/150
提交
取消