我有这段代码:
<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中不起作用,你能帮我吗?
答案 0 :(得分:3)
你可以试试这个
function showImage(id){
if(id==4){
$("image4").css( 'display', 'block');
$("image5").css( 'display', 'none');
$("image6").css( 'display', 'none');
}else if(id==5){
$("image4").css( 'display', 'none');
$("image6").css( 'display', 'none');
$("image5").css( 'display', 'block');
}else{
$("image4").css( 'display', 'none');
$("image6").css( 'display', 'block');
$("image5").css( 'display', 'none');
}