我有这个代码:
<H4>
<b>
<span style="color:blue;cursor:pointer" onclick="showImage(6)">test</span>
</b>
</H4>
<BR>
这是我的 JavaScript 代码:
function showImage(id){
if(id==4){
$("image4").style.display = '';
$("image5").style.display = 'none';
$("image6").style.display = 'none';
}else if(id==5){
$("image4").style.display = 'none';
$("image6").style.display = 'none';
$("image5").style.display = '';
}else{
$("image4").style.display = 'none';
$("image6").style.display = '';
$("image5").style.display = 'none';
}
我的onclick
按钮在 Firefox 中不起作用,您能帮帮我吗?