这<input type="submit">
很容易,它只是价值属性。但是对于一个<button>Value</button>
值在中间(这允许我在按钮标签中有一个很重要的图标)。
我如何在 PHP 中获得它?如果我的按钮看起来像<button type="submit">Text <i class="icon-remove"></i></button>
我包含的<i></i>
部分?
这<input type="submit">
很容易,它只是价值属性。但是对于一个<button>Value</button>
值在中间(这允许我在按钮标签中有一个很重要的图标)。
我如何在 PHP 中获得它?如果我的按钮看起来像<button type="submit">Text <i class="icon-remove"></i></button>
我包含的<i></i>
部分?
只需使用您要传递的数据为您的按钮元素命名和值。
<button type="submit" name="button" value="whatever">Text <i class="icon-remove"></i></button>
假设您的表单使用 POST 方法:
<form method="POST" action="">
你可以这样定义你的按钮:
<button value="value_button" type="submit" name="name_button">Submit</button>
并像这样获得他的价值:
$valueButton = $_POST['name_button'];
<button name="name_of_button" value="some_value">Some Value</button>
假设您的表单是POST
ed 然后使用该值$_POST['name_of_button']