IE attachEvent 的问题
时间:2011-12-19
来源:互联网
function load_events()
{
var mz_editor_events = document.getElementById("mz_ico").getElementsByTagName("*");
var event = event || window.event;
for(i=0 ; i<mz_editor_events.length ; i++)
{
if(mz_editor_events[i].className == "mz_icon_inline")
{
try{
mz_editor_events[i].addEventListener("mousemove",function(){e_move(this);},true);
mz_editor_events[i].addEventListener("mouseout",function(){e_out(this);},true);
mz_editor_events[i].addEventListener("mousedown",function(){e_down(this);},true);
}
catch(e){
mz_editor_events[i].attachEvent("onmousemove",function(){e_move(mz_editor_events[i]);});
mz_editor_events[i].attachEvent("onmouseout",function(){e_out(mz_editor_events[i]);});
mz_editor_events[i].attachEvent("onmousedown",function(){e_down(mz_editor_events[i]);});
}
}
}
}
function e_move(id)
{ id.className = "mz_icon_online";}
function e_out(id)
{ id.className = "mz_icon_inline";}
我的firefox 下面 和ie9下面都正常
ie6-ie8 会报id underfined is null or not an obiect
{
var mz_editor_events = document.getElementById("mz_ico").getElementsByTagName("*");
var event = event || window.event;
for(i=0 ; i<mz_editor_events.length ; i++)
{
if(mz_editor_events[i].className == "mz_icon_inline")
{
try{
mz_editor_events[i].addEventListener("mousemove",function(){e_move(this);},true);
mz_editor_events[i].addEventListener("mouseout",function(){e_out(this);},true);
mz_editor_events[i].addEventListener("mousedown",function(){e_down(this);},true);
}
catch(e){
mz_editor_events[i].attachEvent("onmousemove",function(){e_move(mz_editor_events[i]);});
mz_editor_events[i].attachEvent("onmouseout",function(){e_out(mz_editor_events[i]);});
mz_editor_events[i].attachEvent("onmousedown",function(){e_down(mz_editor_events[i]);});
}
}
}
}
function e_move(id)
{ id.className = "mz_icon_online";}
function e_out(id)
{ id.className = "mz_icon_inline";}
我的firefox 下面 和ie9下面都正常
ie6-ie8 会报id underfined is null or not an obiect
作者: SHANDIANDIAN 发布时间: 2011-12-19
function load_events(event)
{
}
{
}
作者: zhanghuwoaini 发布时间: 2011-12-19
相关阅读 更多
热门阅读
-
office 2019专业增强版最新2021版激活秘钥/序列号/激活码推荐 附激活工具
阅读:74
-
如何安装mysql8.0
阅读:31
-
Word快速设置标题样式步骤详解
阅读:28
-
20+道必知必会的Vue面试题(附答案解析)
阅读:37
-
HTML如何制作表单
阅读:22
-
百词斩可以改天数吗?当然可以,4个步骤轻松修改天数!
阅读:31
-
ET文件格式和XLS格式文件之间如何转化?
阅读:24
-
react和vue的区别及优缺点是什么
阅读:121
-
支付宝人脸识别如何关闭?
阅读:21
-
腾讯微云怎么修改照片或视频备份路径?
阅读:28