我有一个输入提交按钮,其中包含以下代码
<input class="buttons" type="button" onclick="javascript:jQuery(xxxx)" style="font-size: 12px;" value="Invite to Bid">
以下是在 Button 上放置一个优雅的“Go”图像的 css 函数
.buttons {
background: url("/images/default/product/go_bt.png") no-repeat scroll 0 0 transparent;
}
但是现在图像和按钮图形都显示了现在,为了使值空白,我使用了以下 css 代码
input.buttons {
color: transparent;
}
但是输入按钮图形仍然没有消失,只是它的值消失了..有没有可能使用css中的类按钮消失这个输入按钮图形,这样我就可以拥有“go”图像的功能......