var oId1 = document.getElementById('d1');
var oId2 = document.getElementById('d2');
oId1.onmouseover = function(){
this.style.display = 'none';
oId2.style.display = 'block';
}
oId2.onmouseout = function(){
this.style.display = 'none';
oId1.style.display = 'block';
}
JS代码我是这样写的,可以实现,但是所包含的DIV,d1和d2,鼠标移动上去切换的时候会来回在d1和d2跳动,请问如何解决!~
我不怎么会,具体得怎么写呢?麻烦您回答我一下,谢谢哈!~
追答oId1.onmouseout = function(){ this.style.display = 'block'; oId2.style.display = 'none'; } oId2.onmouseover = function(){ this.style.display = 'block'; oId1.style.display = 'none'; }
我是这样想的 ,不知道你要实现的功能是什么。