window.onload=function(){
var button1=document.getElementById('button1');
var hover1=document.getElementById('hover1');
button1.onmouseover=function(){
hover1.style.display="block";
}
button1.onmouseout=function(){
hover1.style.display="none";
}
}
传奇版本库