作业帮 > 综合 > 作业

关于 onmouseout onmouseover

来源:学生作业帮 编辑:神马作文网作业帮 分类:综合作业 时间:2024/11/14 22:48:23
关于 onmouseout onmouseover
function show(b){
var b = document.getElementById(b);
var select = document.createElement("select");
select.id = "select";
select.add(new Option("1","1"));
select.add(new Option("2","2"));
b.appendChild(select);
}
function remove(b){
var b = document.getElementById(b);
var select = document.getElementById("select");
if(select!=null && select!='undefined'){
c.removeChild(select);
}
}
xcvbxcvb
关于 onmouseout onmouseover
方法1:
把放在内,布局样式时,和要无缝连接,如果你的背景是空的,恭喜你,只要鼠标一离开文字,就会触发 mouseout,最好用图片或背景色把填满...显示时,刚好在的边沿,鼠标一移出就是,因为是在内的,所以还保持着的 mouseover 状态.
方法2:
鼠标移出时使用时间延时

要添加mouseover 和 mouseout处理:
该方法,可随便放,只要鼠标离开 0.5秒内(500ms) 移到,remove('b')