$("#id").hover(function(){
$("#id1").fadeIn(1000);
$("#id2").fadeOut(1000);
},function(){
$("#id1").fadeIn(1000);
$("#id2").fadeOut(1000);
});
fadeIn fadeOut 是淡入,淡出事件,id1开始时隐藏的display:none
用jquery可以吗,jquery有个函数hover可能是你需要的函数,函数解释是模仿鼠标悬停时间,函数格式$("#id").hover(function(){code1},function(){code2});
w w w .w3school.com.cn/htmldom/event_onmouseover.asp
onmouseover