formtarget="_blank"在提交未显示在新选项卡上的表单后,不能在我的提交按钮或输入类型提交中使用。在chrome和Firefox浏览器中测试。

<button type="submit" formtarget="_blank" class="btn green"
value="Save &amp; Print"   name="spSlip"
id="spSlip">Save &amp; Print</button>

最佳答案

您可以在表单中添加操作:

<form action="/newpage">
<input type="text">
<button type="submit">Submit</button>
</form>


除此之外,如前所述,formtarget =“ _ blank”应该适用于该按钮。
希望能帮助到你。

10-06 08:12