如何将图像分配给按钮并使其值消失,以便仅图像出现在屏幕上。我正在使用 PHP 和 HTML5。
以下代码有效,图像出现但与图像一起,按钮的值也显示在屏幕上。我无法删除 value 属性,因为我需要它来查找所显示项目的 ID。
PHP 代码(将 td 插入动态表)
<?php $url = get_template_directory_uri().'/images/deleteButton1.png'; ?>
<td class='delete'><button id="gm_btn_delete_order_prod" value="{$product_id}" class="button"></button></td>
CSS
.button
{
background: url(<?php echo $url; ?>) no-repeat;
cursor:pointer;
border: none;
}