var ul1=document.getElementById("change_ul");
var btn=document.getElementById("btn");
btn.onmouseover=show;
btn.onmouseout=hide;
function show(){
document.getElementById("change_ul").style.display="block";
};
function hide(){
ul1.style.display="none";
}
相关分类