AMP表单 - 多个提交按钮

时间:2018-06-08 07:27:37

标签: amp-html

如何以放大器形式设置多个提交按钮?

通常点击提交提交按钮。 在AMP中缺少(不是全部而不是点击的)。

我想决定如何在PHP脚本中使用数据(由于系统的核心功能,这不能改变。)

<input type="submit" name="button1">
<input type="submit" name="button2">

在PHP中它看起来像

if(isset($_POST['button1'])) { .. }
elseif(isset($_POST['button2'])) { .. }

但是在放大器中,单击的按钮丢失了(所以这不起作用)

1 个答案:

答案 0 :(得分:0)

我解决了它:

<input type="checkbox" name="Vergleichsliste" id="setVergleichsliste" on="change:buy_form.submit" />
<label for="setVergleichsliste">Vergleichsliste!</label>

解决方案:创建一个复选框(只有在选中时才会提交)并进行更改。标签应该是按钮而不是(工作)。当然:隐藏用户的复选框..