为什么这不起作用?在Firebug中,当我点击按钮时,它总是告诉我cambiaBandiera没有被定义...
HELP
亚历
#ITA{
float:right;
margin : 5px 85px;
width:40px;
height:40px;
background : #FFFFFF url("../ITA_off.png") center center no-repeat;
border:0;
}
<style type="text/javascript">
function cambiaBandiera() {
test=document.getElementById("ITA");
test.style.backgroundImage="url('../ITA_on.png')";
}
</style>
<div id="bandiere">
<input type="button" id="ITA" onClick="cambiaBandiera()"> </input>
</div>
答案 0 :(得分:7)
我看到您将脚本放在样式标记而不是脚本标记之间。也许这就是它无法找到你的功能的原因?
答案 1 :(得分:1)
您正在错误地指定输入,添加不需要的</input>
:
<input type="button" id="ITA" onClick="cambiaBandiera()"></input>
应该是:
<input type="button" id="ITA" onClick="cambiaBandiera()" />
input
标记是自动关闭的,它不需要关闭标记。
答案 2 :(得分:0)
使用纯CSS:
#bandiere:active{
background : #FFFFFF url("../ITA_on.png") center center no-repeat;
}
答案 3 :(得分:0)
JS是一种标准语言,因此无需指定类型。
此外,它还是script
而非style
,所以:
<script>
function cambiaBandiera() {
test=document.getElementById("ITA");
test.style.backgroundImage="url('../ITA_on.png')";
}
</script>