我有一个默认按钮。那么现在如何将其设为按钮图像?因此,当您单击按钮时,正常情况就会发生。我只想要的是按钮上的图像。感谢。
答案 0 :(得分:1)
尝试放置图像而不是按钮并处理其onclick事件。
答案 1 :(得分:1)
您可以通过指定 src 属性将图像用作按钮:
<input type="image" name="submit" value="submit" src="images/button.gif" />
答案 2 :(得分:1)
<button style="display:block; background: url(/path/to/image.png) no-repeat center;">
Push me!
</button>
答案 3 :(得分:1)
你可以试试这个:
<INPUT TYPE="image" SRC="image location" ALT="SUBMIT">
答案 4 :(得分:0)
你可以使用javascript和一些逻辑。
使用样式属性style =“display:block”创建一个按钮 还可以使用style =“display:none”
在按钮旁边创建所需的图像点击按钮调用javascript函数。
function disphide()
{
btn.style.display='none';
img.style.display='block';
}
这应该有效