按钮值未提交类型提交

时间:2017-02-23 06:05:13

标签: html html5 forms

我在提交中有一个我需要的按钮,当我点击提交时我得到了

http://localhost:xxxxx/add?dashname=1&tabname=2&dashtype=Local

但我需要

http://localhost:xxxxx/add?dashname=1&tabname=2&dashtype=Local&dashicon=fa-plus

{Name:'abcd'}

1 个答案:

答案 0 :(得分:1)

当您提交表单时,其按钮的值不会随之提交。只有提交提交的按钮的值与表格一起提交。   在上面的例子中,如果你只点击add1按钮,那么它的值就会随之提交。

还有其他方法可以提交像这样的值使用input type =“hidden”

<input type="hidden" name="nametosubmit" value="your value">