我正在尝试更改按钮的背景图像,但是它没有按照我的想法工作!
CSS可以,如下所示:
#ITA
{
float: right;
margin: 5px 85px;
width: 40px;
height: 40px;
background: #FFFFFF url("../ITA_off.png") center center no-repeat;
border: 0;
}
我在“ HEAD”中的javascript函数是
function cambiaBandiera() {
test=document.getElementById("ITA");
test.backgroundimage="ITA_on.png";
}
并且按钮如下
<input type="button" id="ITA" onClick="cambiaBandiera()" />
怎么了 ?
请帮忙 !
提前感谢
亚历克斯
最佳答案
test.style.backgroundImage = "url(foo.png)"
关于javascript - 将背景图像更改为按钮,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/2934225/