您的位置:首页 > Web前端 > JQuery

uploadify与jquery1.10 在ie浏览器冲突报错处理(e.getAttribute("classid")缺少对象

2015-09-22 17:33 387 查看

a===t?r.attributes||!h?e.getAttribute(n):(a=e.getAttributeNode(n))&&a.specified?a.value:null:a
改为
a!==null ? (a===t?r.attributes||!h?e.getAttribute(n):(a=e.getAttributeNode(n))&&a.specified?a.value:null:a):null

!t||t!==!0  && e.getAttribute("classid")===t
改为
!t||t!==!0 && e.getAttribute!==null && e.getAttribute("classid")===t

内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: