admin管理员组文章数量:1344618
Why does this not work ? In Firebug, when I click on the button, it always says to me that cambiaBandiera is not defined ...
HELP
Alex
CSS
#ITA{
float:right;
margin : 5px 85px;
width:40px;
height:40px;
background : #FFFFFF url("../ITA_off.png") center center no-repeat;
border:0;
}
JAVASCRIPT (in HEAD)
<style type="text/javascript">
function cambiaBandiera() {
test=document.getElementById("ITA");
test.style.backgroundImage="url('../ITA_on.png')";
}
</style>
and this is HTML
<div id="bandiere">
<input type="button" id="ITA" onClick="cambiaBandiera()"> </input>
</div>
Why does this not work ? In Firebug, when I click on the button, it always says to me that cambiaBandiera is not defined ...
HELP
Alex
CSS
#ITA{
float:right;
margin : 5px 85px;
width:40px;
height:40px;
background : #FFFFFF url("../ITA_off.png") center center no-repeat;
border:0;
}
JAVASCRIPT (in HEAD)
<style type="text/javascript">
function cambiaBandiera() {
test=document.getElementById("ITA");
test.style.backgroundImage="url('../ITA_on.png')";
}
</style>
and this is HTML
<div id="bandiere">
<input type="button" id="ITA" onClick="cambiaBandiera()"> </input>
</div>
Share
Improve this question
edited May 29, 2010 at 8:12
erenon
19.2k2 gold badges64 silver badges96 bronze badges
asked May 29, 2010 at 8:08
Alpan67Alpan67
1052 gold badges5 silver badges15 bronze badges
5
- 1 possible duplicate of Changing background image to a button – Sarfraz Commented May 29, 2010 at 8:09
- yes it's more or less a duplicate – Alpan67 Commented May 29, 2010 at 8:10
- if its a duplicate there's no need to make another question :) just carry on discussing with ments on the answers there :) – corroded Commented May 29, 2010 at 8:14
- OK sry I did not know exactly how it works – Alpan67 Commented May 29, 2010 at 8:16
- You did not specify plete details there, see my answer below also. – Sarfraz Commented May 29, 2010 at 8:16
4 Answers
Reset to default 8I see that you put your script between style tags instead of script tags. Maybe that is the reason it cannot find your function?
You are specifying input in wrongly, adding not needed </input>
:
<input type="button" id="ITA" onClick="cambiaBandiera()"></input>
It should be:
<input type="button" id="ITA" onClick="cambiaBandiera()" />
input
tag is self closing, it does not need closing tag.
Use plain CSS:
#bandiere:active{
background : #FFFFFF url("../ITA_on.png") center center no-repeat;
}
JS is a standard language, so there's no need for specifying the type.
Also, it's a script
not a style
as well so:
<script>
function cambiaBandiera() {
test=document.getElementById("ITA");
test.style.backgroundImage="url('../ITA_on.png')";
}
</script>
本文标签: javascriptChange of a background image of a button on onclick eventStack Overflow
版权声明:本文标题:javascript - Change of a background image of a button on onclick event - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743804161a2541865.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论